blog/templates/post.html

16 lines
No EOL
504 B
HTML

{% extends "base.html" %}
{% block content %}
<article>
<section class=title>
<h1 class=title>{{ page.title }}</h1>
{% 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>
{% endblock content %}