theolem.org/themes/theo_lem/templates/category.html

14 lines
370 B
HTML
Raw Normal View History

2020-05-07 16:29:37 +00:00
{% extends "base.html" %}
{% block content %}
{% if articles %}
{% for article in articles %}
2020-05-07 16:29:37 +00:00
<h2><a href="{{ SITE_URL }}/{{ article.url }}">{{article.title}}</a></h2>
<bold>{{ article.date |strftime('%d.%m.%Y') }}</bold>
<p>---</p>
{% endfor %}
2020-05-07 16:29:37 +00:00
{% else %}
<p>Pas encore d'articles dans cette catégorie. </p>
{% endif %}
{% endblock content %}