flex/templates/page.html
Alexandre Vicenzi 244807c8bb Add extra space.
2015-07-21 00:53:19 -03:00

13 lines
254 B
HTML

{% 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 %}