Files
2026-08-22 14:49:33 +02:00

25 lines
424 B
HTML

{% extends "base.html" %}
{% block content %}
<section class="entry">
<div class="column-left">
<p>{{ page.date }}</p>
{% if page.taxonomies.tags %}
{% for t in page.taxonomies.tags %}
<p class="tag-link">
#{{ t }}
</p>
<br>
{% endfor %}
{% endif %}
</div>
<div class="column-right post">
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
</div>
</section>
{% endblock content %}