2021-09-15 21:14:09 +02:00
|
|
|
{% extends "base.html" %} {% block metadata %}
|
2021-07-13 23:39:59 +02:00
|
|
|
|
2021-09-15 21:14:09 +02:00
|
|
|
<meta name="description" content="{{ page.description }}" />
|
2023-03-10 16:24:44 +01:00
|
|
|
<script defer src="/scripts/relativetime.js"></script>
|
2021-07-13 23:39:59 +02:00
|
|
|
|
2021-09-15 21:14:09 +02:00
|
|
|
{% endblock %} {% block content %}
|
|
|
|
<h2>{{ page.title }}</h2>
|
2023-03-10 15:08:43 +01:00
|
|
|
<div class="visible-article-metadata">
|
|
|
|
{% if page.date and page.date is defined %}
|
|
|
|
<p>
|
|
|
|
<span class="article-metadata-label">First published</span>:
|
2023-03-10 16:24:44 +01:00
|
|
|
<time class="relative-timestamp" datetime="{{page.date}}"
|
2023-03-10 15:08:43 +01:00
|
|
|
>{{ page.date | date(format="%F %R (%Z)", timezone="Europe/Berlin")
|
|
|
|
}}</time
|
2021-09-15 21:14:09 +02:00
|
|
|
>
|
2023-03-10 15:08:43 +01:00
|
|
|
</p>
|
|
|
|
{% endif %} {% if page.updated and page.updated != page.date %}
|
|
|
|
<p>
|
|
|
|
<span class="article-metadata-label">Last updated on</span>:
|
2023-03-10 16:24:44 +01:00
|
|
|
<time class="relative-timestamp" datetime="{{page.updated}}"
|
2023-03-10 15:08:43 +01:00
|
|
|
>{{ page.updated | date(format="%F %R (%Z)", timezone="Europe/Berlin")
|
|
|
|
}}</time
|
2021-09-15 21:14:09 +02:00
|
|
|
>
|
2023-03-10 15:08:43 +01:00
|
|
|
</p>
|
|
|
|
{% endif %} {% if page.extra.author and page.extra.author != "" %}
|
|
|
|
<p>
|
|
|
|
<span class="article-metadata-label">Author(s)</span>: {{page.extra.author}}
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p>
|
|
|
|
<span class="article-metadata-label">Author</span>: Jonas Tobias Hopusch
|
|
|
|
</p>
|
|
|
|
{% endif %} {% if page.extra.license and page.extra.license != "" %}
|
|
|
|
<p id="article-license">
|
|
|
|
<span class="article-metadata-label"
|
|
|
|
>Article is provided under the following license</span
|
|
|
|
>: {{page.extra.license}}
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p class="article-missinglicense">
|
|
|
|
No license is granted for this article. All rights reserved.
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2022-02-06 03:03:19 +01:00
|
|
|
<hr id="last-article-metadata" />
|
2021-09-15 21:14:09 +02:00
|
|
|
<div>{{ page.content | safe }}</div>
|
2021-06-13 22:17:05 +02:00
|
|
|
{% endblock content %}
|