guide.deuxfleurs.fr/templates/page.html

11 lines
263 B
HTML
Raw Normal View History

2022-05-10 17:52:28 +02:00
{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
{% block content %}
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
2023-02-28 21:54:25 +01:00
{% endblock content %}