flex/templates/page.html

19 lines
517 B
HTML
Raw Normal View History

2015-07-18 21:04:01 -03:00
{% extends "base.html" %}
2017-04-22 03:41:39 -03:00
2015-07-21 00:53:19 -03:00
{% block title %} – {{ page.title }}{% endblock %}
2015-07-18 21:04:01 -03:00
{% block content %}
<article class="single">
2015-07-18 21:04:01 -03:00
<header>
2017-04-22 18:34:29 -04:00
{% import 'partial/translations.html' as translations with context %}
{{ translations.translations_for(page) }}
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>
{% block before_content %}{% endblock %}
{% block page_content %}{{ page.content }}{% endblock %}
{% block after_content %}{% endblock %}
2015-07-18 21:04:01 -03:00
</div>
</article>
2015-07-21 00:49:51 -03:00
{% endblock %}