Files
f3-simple-blog/app/Views/site/post.html
2026-03-30 00:00:03 +02:00

14 lines
567 B
HTML

<article class="article" aria-labelledby="post-title">
<header class="article-header">
<h1 class="article-title" id="post-title">{{ @post.title }}</h1>
<p class="meta-text">
Publié le <time datetime="{{ @post.created_at }}">{{ @post.created_at | date_fr }}</time>
<check if="{{ @post.updated_at !== @post.created_at }}">
<true><br>Mis à jour le <time datetime="{{ @post.updated_at }}">{{ @post.updated_at | date_fr }}</time></true>
</check>
</p>
</header>
<div class="prose">{{ @post.body_html | raw }}</div>
</article>