flex/templates/page.html

14 lines
254 B
HTML
Raw Normal View History

2015-07-18 21:04:01 -03:00
{% extends "base.html" %}
2015-07-21 00:53:19 -03:00
{% block title %} – {{ page.title }}{% endblock %}
2015-07-18 21:04:01 -03:00
{% block content %}
<article>
<header>
2015-07-22 23:02:15 -03:00
<h1 id="{{ page.slug }}">{{ page.title }}</h1>
2015-07-18 21:04:01 -03:00
</header>
<div>
{{ page.content }}
</div>
</article>
2015-07-21 00:49:51 -03:00
{% endblock %}