Files
com.xaymar.www/_layouts/default.liquid
T

13 lines
722 B
Plaintext
Raw Normal View History

2021-12-24 11:00:43 +01:00
{% include page_start.liquid %}
2022-01-11 04:26:31 +01:00
{% for data in page.categories %}
2022-01-11 06:09:35 +01:00
<link rel="alternate" type="application/atom+xml" title="Category: {{ data }}" href="{{ "/feed/" | append: data | append: ".xml" | absolute_url }}">
2022-01-11 04:26:31 +01:00
{% endfor %}
{% for data in page.tags %}
<link rel="alternate" type="application/atom+xml" title="Tag: {{ data }}" href="{{ site.feed.tags.path | append: data | append: ".xml" | absolute_url }}">
{% endfor %}
2021-12-24 11:00:43 +01:00
{% include page_content.liquid %}
{% include breadcrumbs.liquid title=page.title permalink=page.url %}
{% include article.liquid type=post title=page.title content=page.content timestamp=page.date permalink=page.url tags=page.tags %}
{% include comments.liquid %}
{% include page_end.liquid %}