flex/templates/page.html

14 lines
254 B
HTML
Raw Normal View History

2015-07-19 02:04:01 +02:00
{% extends "base.html" %}
2015-07-21 05:53:19 +02:00
{% block title %} – {{ page.title }}{% endblock %}
2015-07-19 02:04:01 +02:00
{% block content %}
<article>
<header>
<h2 id="{{ page.slug }}">{{ page.title }}</h2>
</header>
<div>
{{ page.content }}
</div>
</article>
2015-07-21 05:49:51 +02:00
{% endblock %}