pages, listing et aussi .social

This commit is contained in:
2024-03-24 13:24:33 +01:00
parent 1be9bbb472
commit 8dbb094fa9
4 changed files with 31 additions and 5 deletions

View File

@ -8,6 +8,20 @@
{% block content %}
<article>
{% if DISPLAY_PAGE_HEADER %}
<hgroup>
<h1>
{{ page.title }}
</h1>
<p>
{% if page.modified %}
Modifié le <time datetime="{{ page.modified.isoformat() }}">{{ page.modified|strftime('%A %d %B %Y') }}</time>
{% else %}
Publié le <time datetime="{{ page.date.isoformat() }}">{{ page.date|strftime('%A %d %B %Y') }}</time>
{% endif %}
</p>
</hgroup>
{% endif %}
{{ page.content }}
</article>
{% endblock %}