flex/templates/page.html
2017-02-02 07:35:00 +01:00

15 lines
396 B
HTML

{% extends "base.html" %}
{% block title %} – {{ page.title }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1 id="{{ page.slug }}">{{ page.title }}</h1>
</header>
<div>
{% block before_content %}{% endblock %}
{% block page_content %}{{ page.content }}{% endblock %}
{% block after_content %}{% endblock %}
</div>
</article>
{% endblock %}