30 lines
709 B
Twig
30 lines
709 B
Twig
{% extends "layout.twig" %}
|
||
|
||
{% block title %}{{ post.title }} – Mon Blog{% endblock %}
|
||
|
||
{% block content %}
|
||
<article class="post">
|
||
<h1>{{ post.title }}</h1>
|
||
|
||
<div class="post-meta">
|
||
<small>Publié le {{ post.createdAt|date("d/m/Y à H:i") }}</small>
|
||
</div>
|
||
|
||
|
||
{% if post.updatedAt != post.createdAt %}
|
||
<div class="post-updated">
|
||
<small><em>Mis à jour le {{ post.updatedAt|date("d/m/Y à H:i") }}</em></small>
|
||
</div>
|
||
{% endif %}
|
||
|
||
<div class="post-content">
|
||
{# Le contenu est déjà sanitisé par HtmlSanitizer #}
|
||
{{ post.content }}
|
||
</div>
|
||
|
||
<hr>
|
||
<p>
|
||
<a href="/">← Retour aux articles</a>
|
||
</p>
|
||
</article>
|
||
{% endblock %} |