flex/templates/page.html
Alexandre Vicenzi b35cde0428 Flex theme.
2015-07-18 21:04:01 -03:00

13 lines
No EOL
252 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 %}