homepageTheme/theme/templates/page.html

33 lines
847 B
HTML

{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
{% block head %}
{{ super() }}
{% import 'translations.html' as translations with context %}
{% if translations.entry_hreflang(page) %}
{{ translations.entry_hreflang(page) }}
{% endif %}
{% endblock %}
{% block content %}
<main>
<div class="page_title">
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.title }}
</div>
{% if page.modified %}
<div class="details">
<span>Aktualisiert:&nbsp;</span><span class="updated"><time datetime="{{ article.modified.isoformat() }}">{{ article.locale_modified }}</time></span>
</div>
{% endif %}
<article>
{{ page.content }}
</article>
</main>
{% endblock %}