Add some blocks to page for easier customization

This commit is contained in:
Axel Haustant 2017-02-02 07:35:00 +01:00
parent 61bae3c360
commit 3b5518e64e

View file

@ -7,7 +7,9 @@
<h1 id="{{ page.slug }}">{{ page.title }}</h1>
</header>
<div>
{{ page.content }}
{% block before_content %}{% endblock %}
{% block page_content %}{{ page.content }}{% endblock %}
{% block after_content %}{% endblock %}
</div>
</article>
{% endblock %}