flex/templates/page.html

14 lines
269 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 class="single">
2015-07-19 02:04:01 +02:00
<header>
2015-07-23 04:02:15 +02:00
<h1 id="{{ page.slug }}">{{ page.title }}</h1>
2015-07-19 02:04:01 +02:00
</header>
<div>
{{ page.content }}
</div>
</article>
2015-07-21 05:49:51 +02:00
{% endblock %}