chambery_ctt/themes/contraception/templates/index.html
2025-07-04 22:20:26 +02:00

16 lines
294 B
HTML
Executable File

{% extends "base.html" %}
{% block content %}
{% for page in pages %}
{% if page.slug =='announcement' %}
<div class="announcement">
{{ page.content }}
</div>
{% endif %}
{% if page.slug == 'index'%}
{{page.content }}
{% endif %}
{% endfor %}
{% endblock content %}