theolem.org/themes/geignard/templates/category.html
2025-05-06 23:39:23 +02:00

15 lines
332 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} | {{ category }} {% endblock %}
{% block content %}
{% for article in articles %}
<h2><a href="{{ SITE_URL }}/{{ article.url }}">{{article.title}}</a></h2>
<bold>{{ article.date |strftime('%d.%m.%Y') }}</bold>
<p>---</p>
{% endfor %}
{% endblock content %}