From 50ccfeb1323b3d5d2271190daa2d0252df5dea2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 9 Jul 2018 14:06:32 +0200 Subject: [PATCH] templates: add block tags in and around content (#25145) --- templates/theme.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/theme.html b/templates/theme.html index 09c53a6..4154ae5 100644 --- a/templates/theme.html +++ b/templates/theme.html @@ -110,10 +110,14 @@ {% endif %} {% endblock %} + {% block content-pre %} {% endblock %}
+ {% block content-top %}{% endblock %} {% block content %} {% endblock %} + {% block content-bottom %}{% endblock %}
+ {% block content-post %}{% endblock %}
-- 2.18.0