2021-06-13 22:17:05 +02:00
|
|
|
{% extends "base.html" %} {% block content %}
|
2021-06-14 12:08:22 +02:00
|
|
|
<h3>{{ page.title }}</h3>
|
|
|
|
<article>
|
2021-06-29 22:52:39 +02:00
|
|
|
{% if page.date and page.date is defined %}
|
2021-06-14 12:08:22 +02:00
|
|
|
<p>Published on: {{ page.date }}</p>
|
2021-06-29 22:52:39 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if page.updated and page.updated != page.date %}
|
|
|
|
<p>Last updated on: {{ page.updated }}</p>
|
|
|
|
{% endif %}
|
2021-06-14 12:08:22 +02:00
|
|
|
<div>
|
|
|
|
{{ page.content | safe }}
|
|
|
|
</div>
|
|
|
|
</article>
|
2021-06-13 22:17:05 +02:00
|
|
|
{% endblock content %}
|