mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-22 23:44:53 +01:00
15 lines
347 B
HTML
15 lines
347 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>
|