mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-10 01:29:21 +01:00
15 lines
318 B
HTML
15 lines
318 B
HTML
<h1>{{ page.title }}</h1>
|
|
|
|
{% if page.toc and page.extra.toc %}
|
|
{% include "toc.html" %}
|
|
{% endif %}
|
|
|
|
{{ page.content | safe }}
|
|
|
|
<p class="tagsData">
|
|
{% if page.taxonomies.tags %}
|
|
{% for tag in page.taxonomies.tags %}
|
|
<a href="/tags/{{ tag | slugify }}">/{{ tag }}/</a>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</p>
|