This commit is contained in:
Priec
2026-05-17 15:16:51 +02:00
parent 27887bf664
commit 622afc310d
16 changed files with 617 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
{% extends "base.html" %}
{% block title %}Blog{% endblock title %}
{% block content %}
<h1>Blog</h1>
{% if articles | length > 0 %}
<ul>
{% for article in articles %}
<li>
<a href="/blog/{{ article.slug }}">{{ article.title }}</a>
{% if article.excerpt %}<p>{{ article.excerpt }}</p>{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>No published posts yet.</p>
{% endif %}
{% endblock content %}