first version of the new website
[markerbeacon.git] / themes / notmyidea / templates / page.html
1 {% extends "base.html" %}
2 {% block html_lang %}{{ page.lang }}{% endblock %}
3 {% block title %}{{ page.title }}{% endblock %}
4
5 {% block extra_head %}
6 {% import 'translations.html' as translations with context %}
7 {% if translations.entry_hreflang(page) %}
8   {{ translations.entry_hreflang(page) }}
9 {% endif %}
10 {% endblock %}
11
12 {% block content %}
13 <section id="content" class="body">
14     <h1 class="entry-title">{{ page.title }}</h1>
15     {% import 'translations.html' as translations with context %}
16     {{ translations.translations_for(page) }}
17     {{ page.content }}
18 </section>
19 {% endblock %}