diff options
author | ADRN <adrien@luxeylab.net> | 2025-01-03 16:28:29 +0100 |
---|---|---|
committer | ADRN <adrien@luxeylab.net> | 2025-01-03 16:28:29 +0100 |
commit | 33907abc248db19da8208b75c9f30e62446d8244 (patch) | |
tree | b23d3c65d97cd66f061f8879d3bda8d84d82886c /templates/section.html | |
parent | 6206570990e140508a2f26ab227cfa876322c4aa (diff) | |
download | guide.deuxfleurs.fr-33907abc248db19da8208b75c9f30e62446d8244.tar.gz guide.deuxfleurs.fr-33907abc248db19da8208b75c9f30e62446d8244.zip |
rewrite(services): main page, organisation of pages in section, shmol stuff
Diffstat (limited to 'templates/section.html')
-rw-r--r-- | templates/section.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/section.html b/templates/section.html index 09763b9..0725de2 100644 --- a/templates/section.html +++ b/templates/section.html @@ -1 +1,10 @@ +{% import "_macros.html" as macros %} {% extends "index.html" %} + +{% block title %}{{ section.title }} | {{ super() }} {% endblock title %} + + +{% block content %} +<div class="heading-text">{{ section.description }}</div> +{{ section.content | safe }} +{% endblock content %} |