From 24eaaa277f36b391cd3c90cc970e69cb7a5f4711 Mon Sep 17 00:00:00 2001 From: Evarin Date: Sun, 30 Aug 2020 12:11:13 +0200 Subject: [PATCH] Sitecof : Affiche titre des pages dans --- gestioncof/cms/templates/cofcms/base.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gestioncof/cms/templates/cofcms/base.html b/gestioncof/cms/templates/cofcms/base.html index f5d3a3f8..a3c78bcb 100644 --- a/gestioncof/cms/templates/cofcms/base.html +++ b/gestioncof/cms/templates/cofcms/base.html @@ -4,7 +4,14 @@ <html> <head> <meta charset="utf-8"> - <title>{% block title %}{% trans "Association des élèves de l'ENS Ulm" %}{% endblock %} + {% block title %} + {% if page.seo_title %} + {{ page.seo_title }} | + {% elif page.title %} + {{ page.title }} | + {% endif %} + {% trans "Association des élèves de l'ENS Ulm" %} + {% endblock %}