Projet

Général

Profil

0001-templates-add-block-tags-in-and-around-content-25145.patch

Frédéric Péters, 09 juillet 2018 14:19

Télécharger (897 octets)

Voir les différences:

Subject: [PATCH] templates: add block tags in and around content (#25145)

 templates/theme.html | 4 ++++
 1 file changed, 4 insertions(+)
templates/theme.html
110 110
{% endif %}
111 111
{% endblock %}
112 112

  
113
    {% block content-pre %} {% endblock %}
113 114
    <div id="content" class="gru-content large">
115
            {% block content-top %}{% endblock %}
114 116
            {% block content %}
115 117
            {% endblock %}
118
            {% block content-bottom %}{% endblock %}
116 119
    </div> <!-- #content -->
120
    {% block content-post %}{% endblock %}
117 121

  
118 122
    <br class="clear"/>
119 123

  
120
-