| |
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 %} |