flex/templates/page.html
Alexandre Vicenzi 49e0a6880a Move variables to separated less file.
This allows to customize Flex more easily.
2016-09-14 00:04:22 -03:00

13 lines
269 B
HTML

{% extends "base.html" %}
{% block title %} – {{ page.title }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1 id="{{ page.slug }}">{{ page.title }}</h1>
</header>
<div>
{{ page.content }}
</div>
</article>
{% endblock %}