14 lines
221 B
Plaintext
14 lines
221 B
Plaintext
{% extends "base.njk" %}
|
|
|
|
{% block article %}
|
|
<h1 class="mt128">{{ title }}</h1>
|
|
{% if date %}
|
|
<div class="meta-published">
|
|
Publié le : {{ date_format(date) }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{ contents | safe }}
|
|
|
|
{% endblock %}
|