Projet

Général

Profil

0001-templates-use-global-title-in-page-header-28774.patch

Frédéric Péters, 08 décembre 2018 09:43

Télécharger (1,46 ko)

Voir les différences:

Subject: [PATCH] templates: use global title in page header (#28774)

 templates/theme.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
templates/theme.html
5 5
    <meta charset="UTF-8"><!-- 🔥 -->
6 6
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7 7
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
    <title>{% firstof global_title "Compte Citoyen" %} {% block title %}{% endblock %}</title>
8
    <title>{% firstof global_title site_title "Compte Citoyen" %} {% block title %}{% endblock %}</title>
9 9
    {% if meta_robots %}
10 10
    <meta name="robots" content="{{ meta_robots }}" />
11 11
    {% elif environment_label %}
......
53 53
     {% block header-top %}{% endblock %}
54 54
     <div id="top">
55 55
       {% block header-title %}
56
       <h1 id="logo"><a accesskey="1" href="{% firstof logo_link_url portal_url '/' %}">{{ site_title }}</a></h1>
56
       <h1 id="logo"><a accesskey="1" href="{% firstof logo_link_url portal_url '/' %}">{% firstof global_title site_title "Compte Citoyen" %}</a></h1>
57 57
       {% endblock %}
58 58
       {% if include_top_links != False %}
59 59
        <div id="toplinks">
60
-