14 lines
370 B
HTML
14 lines
370 B
HTML
{% extends "base.html" %}
|
|
{% 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 %} |