This commit is contained in:
2026-08-22 14:49:33 +02:00
commit 95f15fe531
63 changed files with 2977 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{% 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 %}