{% extends "base.twig" %} {% block content %}

{{ current_language == 'en' ? 'Search the site' : 'Recherche sur le site' }}

{{ current_language == 'en' ? 'Search for an event, a lab member, a publication…' : 'Rechercher un événement, un membre du laboratoire, un ouvrage…' }}

{% if author_cards is not empty %}

{{ current_language == 'en' ? 'Lab members' : 'Membres du laboratoire' }}

{% for author in author_cards %} {% include 'partials/author-card.twig' %} {% endfor %}
{% endif %} {% if taxonomy_cards is not empty %}

{{ current_language == 'en' ? 'Axes & research programs' : 'Axes & programmes de recherche' }}

{% endif %} {% include 'partials/category-filters.twig' %}
{% if posts is not empty %}
{% for post in posts %} {% include 'partials/post-card.twig' with { post: post, card: cards[post.ID], show_category: true } %} {% endfor %}
{% else %}

{{ current_language == 'en' ? 'No results for' : 'Aucun résultat pour' }} « {{ search_query }} ».

{% endif %}
{% endblock %}