chambery_ctt/themes/contraception/templates/category.html

12 lines
206 B
HTML
Raw Normal View History

2024-02-13 13:27:26 +00:00
{% 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 %}