2025-03-27 16:03:55 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2025-05-11 21:58:51 +02:00
|
|
|
<article>
|
|
|
|
|
<section class=title>
|
|
|
|
|
<h1 class=title>{{ page.title }}</h1>
|
2025-05-13 01:40:28 +02:00
|
|
|
{% if page.description %}
|
|
|
|
|
<p class=subtitle>{{ page.description }}</p>
|
|
|
|
|
{% endif %}
|
2025-05-14 22:36:03 +02:00
|
|
|
<p class=metadata>
|
|
|
|
|
<span> {{ page.authors | join(sep=', ') }}</span>
|
|
|
|
|
|
|
|
|
|
|
<span>
|
|
|
|
|
<meta itemprop="datePublished" content="{{ page.date | date(format='%+') }}">
|
|
|
|
|
{{ page.date | date(format='%d %b %Y') }}
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
{% if page.updated %}
|
|
|
|
|
<span> {{ page.updated | date(format='%d %b %Y') }}</span>
|
|
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
<span> {{ page.reading_time }} min</span>
|
|
|
|
|
|
|
|
|
|
</p>
|
2025-05-11 21:58:51 +02:00
|
|
|
</section>
|
|
|
|
|
<section>
|
|
|
|
|
{{ page.content | safe }}
|
|
|
|
|
</section>
|
|
|
|
|
</article>
|
2025-03-27 16:03:55 +01:00
|
|
|
{% endblock content %}
|