feat: improve header of article

This commit is contained in:
Alexis Fourmaux 2025-05-13 01:40:28 +02:00
parent 22a753478c
commit a8eae5f0f9
3 changed files with 24 additions and 9 deletions

View file

@ -4,7 +4,10 @@
<article>
<section class=title>
<h1 class=title>{{ page.title }}</h1>
<p class=subtitle>{{ page.date }}</p>
{% 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 }}