{% extends "layout.twig" %} {% block title %}Slim Blog{% endblock %} {% block meta %} {% endblock %} {% block content %} {% if searchQuery %}

{% if posts is not empty %} {{ posts|length }} résultat{{ posts|length > 1 ? 's' : '' }} pour « {{ searchQuery }} » {% else %} Aucun résultat pour « {{ searchQuery }} » {% endif %}

{% endif %} {% if categories is not empty %} {% endif %}
{% for post in posts %} {% set thumb = post_thumbnail(post) %}

{{ post.title }}

Publié le {{ post.createdAt|date("d/m/Y à H:i") }} par {{ post.authorUsername ?? 'inconnu' }} {% if post.categoryName %} {{ post.categoryName }} {% endif %}

{{ post_excerpt(post) }}

{% else %}

Aucun article publié{% if searchQuery %} pour « {{ searchQuery }} »{% elseif activeCategory %} dans cette catégorie{% endif %}.

{% endfor %}
{% endblock %}