chambery_ctt/themes/contraception/templates/archives.html
2025-01-12 13:19:57 +01:00

16 lines
283 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Archives{% endblock %}
{% block content %}
<h1>Newsletters passées</h1>
<ul>
{% for article in dates %}
<li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
{% endblock %}
</ul>