flex/templates/page.html

13 lines
252 B
HTML
Raw Normal View History

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