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

{% if totalPosts > 0 %} {{ totalPosts }} résultat{{ totalPosts > 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 %}
{% include 'partials/_pagination.twig' with { pagination: pagination } %} {% endblock %}