guide.deuxfleurs.fr/templates/page.html

11 lines
263 B
HTML
Raw Normal View History

2022-05-10 15:52:28 +00: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 20:54:25 +00:00
{% endblock content %}