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

19 lines
483 B
HTML

{% extends 'base.html' %}
{% block head %}
<link rel="stylesheet" href="{{ SITE_URL }}/{{ THEME_STATIC_DIR }}/css/index.css" type="text/css"">
{% endblock head %}
{% block content %}
<ul>
{% for article in articles %}
{% if article.category == "poemes" %}
<li>
<a href="{{article.url}}">{{article.title}}</a> ({{ article.date.strftime('%d.%m.%Y') }})
</li>
<p>--</p>
{% endif %}
{% endfor %}
</ul>
{% endblock content %}