20 lines
408 B
HTML
20 lines
408 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<main role="main" class="container space-y-6">
|
|
<p class="text-sm text-gray-600 italic">
|
|
{% if post.lang == "en" %}
|
|
Published {{ post.date_en }}
|
|
{% else %}
|
|
Publié le {{ post.date_fr }}
|
|
{% endif %}
|
|
</p>
|
|
|
|
<div class="prose">
|
|
{{ post.html | safe }}
|
|
</div>
|
|
</main>
|
|
|
|
{% endblock content %}
|