From 7751d78b983a42da42123f728407c213b403cd19 Mon Sep 17 00:00:00 2001 From: maurine Date: Thu, 9 Apr 2026 23:01:41 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20simplification=20du=20code=20base.html.?= =?UTF-8?q?twig=20(suppression=20de=20meta=20obsol=C3=A8te,=20am=C3=A9lior?= =?UTF-8?q?ation=20des=20commentaires=20et=20du=20markup)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/base.html.twig | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/templates/base.html.twig b/templates/base.html.twig index a1fe593..7df3118 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -3,7 +3,6 @@ - {% block title %}Association Kaz{% endblock %} @@ -18,13 +17,11 @@ - {% block navbar %} - {{ include('_navbar.html.twig') }} - {% endblock %} + {{ include('_navbar.html.twig') }} {# Contenu principal #}
- {# Gestion du responsive sur toutes les pages #} + {# Gestion du responsive et l'espacement pour toutes les pages #}
{# Affichage des messages flash (Succès ou Erreur) #} {% for label, messages in app.flashes %} @@ -58,20 +55,17 @@
{% endfor %} {% endfor %} + {# Affichage du body spécifique à chaque page #} + {% block body %}{% endblock %} +
- {# Affichage du body spécifique à chaque page #} - {% block body %}{% endblock %} - - - {# Gestion du pied-de-page du site #} + {# Gestion du pied-de-page #}