From 3b5518e64e0c62b8e91073e7a71b645a7ffe26f1 Mon Sep 17 00:00:00 2001 From: Axel Haustant Date: Thu, 2 Feb 2017 07:35:00 +0100 Subject: [PATCH] Add some blocks to page for easier customization --- templates/page.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/page.html b/templates/page.html index fff05c9..c7fb212 100644 --- a/templates/page.html +++ b/templates/page.html @@ -7,7 +7,9 @@

{{ page.title }}

- {{ page.content }} + {% block before_content %}{% endblock %} + {% block page_content %}{{ page.content }}{% endblock %} + {% block after_content %}{% endblock %}
{% endblock %}