Files
Michael Fabian 'Xaymar' Dirks 30057b69cd Fix styling
2022-03-25 16:25:55 +01:00

13 lines
717 B
Plaintext

{% include page_start.liquid %}
{% for data in page.categories %}
<link rel="alternate" type="application/atom+xml" title="Category: {{ data }}" href="{{ "/feed/" | append: data | append: ".xml" | absolute_url }}">
{% 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 %}
{% include page_content.liquid %}
{% include breadcrumbs.liquid title=page.title permalink=page.url %}
{% include article.liquid type=post title=page.title content=content timestamp=page.date permalink=page.url tags=page.tags %}
{% include comments.liquid %}
{% include page_end.liquid %}