Files
site_internet/templates/accomplissements.html
2026-03-06 18:55:43 +01:00

14 lines
231 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>
{{section.title}}
</h1>
<ul>
{% for page in section.pages %}
<li><a href="{{page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}