2021-07-13 23:39:59 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block metadata %}
|
|
|
|
|
2021-07-13 23:47:05 +02:00
|
|
|
<meta name="description" content="{{ page.description }}"/>
|
2021-07-13 23:39:59 +02:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-07-28 18:23:57 +02:00
|
|
|
<h2>
|
|
|
|
{{ page.title }}
|
|
|
|
</h2>
|
|
|
|
{% if page.date and page.date is defined %}
|
|
|
|
<p>
|
2021-08-26 10:18:51 +02:00
|
|
|
<em><strong>Published on</strong>: {{ page.date | date(format="%A, %e %B %Y %R %Z", timezone="Europe/Berlin") }}</em>
|
2021-07-28 18:23:57 +02:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% if page.updated and page.updated != page.date %}
|
|
|
|
<p>
|
2021-08-26 10:18:51 +02:00
|
|
|
<em><strong>Last updated on</strong>: {{ page.updated | date(format="%A, %e %B %Y %R %Z", timezone="Europe/Berlin") }}</em>
|
2021-07-28 18:23:57 +02:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
<div>
|
|
|
|
{{ page.content | safe }}
|
|
|
|
</div>
|
2021-06-13 22:17:05 +02:00
|
|
|
{% endblock content %}
|