refonte/themes/afpy/templates/page.html

30 lines
718 B
HTML

{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block title %}{{ page.title|striptags }} - {{ SITENAME }}{%endblock%}
{% block head %}
{{ super() }}
{% import 'translations.html' as translations with context %}
{% if translations.entry_hreflang(page) %}
{{ translations.entry_hreflang(page) }}
{% endif %}
{% endblock %}
{% block content %}
<section>
<h2>{{ page.title }}</h2>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% if page.modified %}
<aside>
<p>Last updated: {{ page.locale_modified }}</p>
</aside>
{% endif %}
</section>
{% endblock %}