theme/templates/page.html

changeset 36
9507107a1133
equal deleted inserted replaced
35:bb011397a99c 36:9507107a1133
1 {% extends "base.html" %}
2 {% block title %}{{ page.title }}{%endblock%}
3
4 {% block pageheader %}
5 <div class="hp-header-inner">
6 <div class="page-header">
7 <div class="content-header">
8 <div id="title-block">
9 <h1>{{ page.title }}</h1>
10 </div>
11 </div>
12 </div>
13 </div>
14 {% endblock %}
15
16 {% block content %}
17 <section class="article">
18 {% import 'translations.html' as translations with context %}
19 {{ translations.translations_for(page) }}
20
21 {{ page.content }}
22 </section>
23 {% endblock %}

mercurial