Projet

Général

Profil

0001-misc-use-meta_description-variable-for-site-descript.patch

Frédéric Péters, 10 juin 2018 09:09

Télécharger (899 octets)

Voir les différences:

Subject: [PATCH] misc: use meta_description variable for site description
 (#24399)

 templates/theme.html | 3 +++
 1 file changed, 3 insertions(+)
templates/theme.html
11 11
    {% elif environment_label %}
12 12
    <meta name="robots" content="noindex, nofollow, noarchive, nosnippet, notranslate, noimageindex" />
13 13
    {% endif %}
14
    {% if meta_description %}
15
    <meta name="description" content="{{ meta_description }}" />
16
    {% endif %}
14 17
    {% if favicon %}
15 18
    <link rel="shortcut icon" href="{{site_base}}{% static "" %}{{favicon}}" />
16 19
    {% endif %}
17
-