Merge pull request #79 from noirbizarre/page-blocks

Add some blocks to page for easier customization
This commit is contained in:
Alexandre Vicenzi 2017-02-14 21:15:45 -02:00 committed by GitHub
commit 0e90c10b6d

View file

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