2010-11-08 23:04:00 +00:00
|
|
|
{% extends "base.html" %}
|
2018-07-01 20:32:08 +02:00
|
|
|
{% block html_lang %}{{ page.lang }}{% endblock %}
|
2018-06-13 00:20:55 +00:00
|
|
|
|
2019-10-25 09:19:15 +02:00
|
|
|
{% block title %}{{ SITENAME }} - {{ page.title|striptags }}{%endblock%}
|
2018-06-13 00:20:55 +00:00
|
|
|
|
2018-07-05 00:26:50 +02:00
|
|
|
{% block head %}
|
|
|
|
|
{{ super() }}
|
|
|
|
|
|
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
|
{% if translations.entry_hreflang(page) %}
|
|
|
|
|
{{ translations.entry_hreflang(page) }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2010-11-08 23:04:00 +00:00
|
|
|
{% block content %}
|
|
|
|
|
<h1>{{ page.title }}</h1>
|
2012-11-21 14:41:09 +02:00
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
|
{{ translations.translations_for(page) }}
|
|
|
|
|
|
2010-11-08 23:04:00 +00:00
|
|
|
{{ page.content }}
|
2013-11-17 23:40:11 +01:00
|
|
|
|
2018-06-13 00:20:55 +00:00
|
|
|
{% if page.modified %}
|
|
|
|
|
<p>
|
|
|
|
|
Last updated: {{ page.locale_modified }}
|
|
|
|
|
</p>
|
|
|
|
|
{% endif %}
|
2010-11-08 23:04:00 +00:00
|
|
|
{% endblock %}
|