blog/themes/flex/templates/page.html
2015-10-12 17:19:51 +02:00

14 lines
254 B
HTML

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