2017-07-06 14:28:42 +02:00
|
|
|
{% extends "base.html" %}
|
2019-02-13 16:49:46 +01:00
|
|
|
{% block html_lang %}{{ page.lang }}{% endblock %}
|
2018-03-06 21:42:19 +01:00
|
|
|
|
2019-02-13 16:49:46 +01:00
|
|
|
{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
|
2018-03-06 12:04:11 +01:00
|
|
|
|
2019-02-13 16:49:46 +01:00
|
|
|
{% block head %}
|
|
|
|
{{ super() }}
|
2017-07-06 14:28:42 +02:00
|
|
|
|
2019-02-13 16:49:46 +01:00
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
{% if translations.entry_hreflang(page) %}
|
|
|
|
{{ translations.entry_hreflang(page) }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2018-03-07 10:32:00 +01:00
|
|
|
|
2019-02-13 16:49:46 +01:00
|
|
|
{% block content %}
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
{{ translations.translations_for(page) }}
|
2018-03-07 10:32:00 +01:00
|
|
|
|
2019-02-13 16:49:46 +01:00
|
|
|
{{ page.content }}
|
2018-03-06 21:42:19 +01:00
|
|
|
|
2019-02-13 16:49:46 +01:00
|
|
|
{% if page.modified %}
|
|
|
|
<p>
|
|
|
|
Last updated: {{ page.locale_modified }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2017-07-06 14:28:42 +02:00
|
|
|
{% endblock %}
|