friendenstein/templates/base-page.html

16 lines
318 B
HTML
Raw Normal View History

2023-12-22 12:19:19 +01:00
<h1>{{ page.title }}</h1>
{% if page.toc and page.extra.toc %}
2023-12-26 01:11:47 +01:00
{% include "toc.html" %}
2023-12-22 12:19:19 +01:00
{% endif %}
{{ page.content | safe }}
<p class="tagsData">
2023-12-26 01:11:47 +01:00
{% if page.taxonomies.tags %}
{% for tag in page.taxonomies.tags %}
<a href="/tags/{{ tag | slugify }}">&#47;{{ tag }}&#47;</a>
{% endfor %}
{% endif %}
2023-12-22 23:46:12 +01:00
</p>