This repository has been archived on 2026-03-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blog-slim.old/views/pages/home.twig
2026-03-09 14:17:05 +01:00

26 lines
596 B
Twig

{% extends "layout.twig" %}
{% block title %}Mon Blog{% endblock %}
{% block content %}
{% for post in posts %}
<article class="post">
<h2>{{ post.title }}</h2>
<div class="post-meta">
<small>Publié le {{ post.createdAt|date("d/m/Y à H:i") }}</small>
{% if post.isRecent(7) %}
<span class="badge badge-new">Nouveau</span>
{% endif %}
</div>
<p>{{ post.getExcerpt(200) }}</p>
<p>
<a href="/article/{{ post.getSlug() }}">Lire la suite →</a>
</p>
</article>
{% else %}
<p>Aucun article publié.</p>
{% endfor %}
{% endblock %}