{% extends 'base.html.twig' %} {% block title %}Résultats pour "{{ query }}"{% endblock %} {% block body %}

Résultats pour "{{ query }}"

{% if articles is empty %}

Aucun article trouvé.

{% else %}
{% for article in articles %} {% endfor %}
Titre Date de publication Lien
{{ article.title }} {{ article.createdAt ? article.createdAt|date('d/m/Y') : '—' }} Voir l'article
{% endif %} {% endblock %}