guide.deuxfleurs.fr/templates/section.html

11 lines
272 B
HTML
Raw Normal View History

{% import "_macros.html" as macros %}
2022-05-10 15:52:28 +00:00
{% extends "index.html" %}
{% block title %}{{ section.title }} | {{ super() }} {% endblock title %}
{% block content %}
<div class="heading-text">{{ section.description }}</div>
{{ section.content | safe }}
{% endblock content %}