theolem.org/themes/theo_lem/templates/category.html
2020-05-10 16:23:09 +02:00

17 lines
436 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} | {{ category }} {% endblock %}
{% block content %}
{% if articles %}
{% 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 %}
{% else %}
<p>Pas encore d'articles dans cette catégorie. </p>
{% endif %}
{% endblock content %}