blog/templates/post.html

16 lines
504 B
HTML
Raw Normal View History

2025-12-23 22:27:51 +01:00
{% extends "base.html" %}
{% block content %}
<article>
<section class=title>
<h1 class=title>{{ page.title }}</h1>
2025-12-23 22:27:51 +01:00
{% if page.description %}
<p class=subtitle>{{ page.description }}</p>
{% endif %}
<p class=metadata>par {{ page.authors | join(sep=', ') }} le {{ page.date }}{% if page.updated %} (mise à jour : {{ page.updated }}){% endif %}</p>
</section>
<section>
{{ page.content | safe }}
</section>
</article>
2025-12-23 22:27:51 +01:00
{% endblock content %}