varia.website/themes/varia/templates/page.html

28 lines
678 B
HTML
Raw Normal View History

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 %}
2019-02-13 16:49:46 +01:00
{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
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 %}
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) }}
2019-02-13 16:49:46 +01:00
{{ page.content }}
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 %}