flex/templates/page.html
Alexandre Vicenzi 2adc599df7 Fix template.
2015-07-22 23:02:51 -03:00

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