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