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>
|
|
|
|
<em><strong>Published on</strong>: {{ page.date }}</em>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% if page.updated and page.updated != page.date %}
|
|
|
|
<p>
|
|
|
|
<em><strong>Last updated on</strong>: {{ page.updated }}</em>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
<div>
|
|
|
|
{{ page.content | safe }}
|
|
|
|
</div>
|
2021-06-13 22:17:05 +02:00
|
|
|
{% endblock content %}
|