chambery_ctt/themes/contraception/templates/category.html
2024-02-13 14:27:26 +01:00

12 lines
206 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
{% for article in articles %}
<li><a href="{{SITE_URL}}/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}