{% extends 'base.html.twig' %} {% block seo %} {{ seo.title|default('Annuaire') }} — {{ site.name|default('') }} {% endblock %} {% block body %}

{{ title_page }}

{# --- Recherche --- #} {# --- Filtres categories --- #} {% if directoryCategories|length > 1 %}
Tous {% for cat in directoryCategories %} {% if cat.icon %}{{ bi(cat.icon|replace({'bi bi-': '', 'bi-': ''}), 'me-1') }}{% endif %} {{ cat.name }} {% endfor %}
{% endif %} {# --- Grille --- #} {% if entries|length > 0 %}

{{ entries|length }} professionnel{{ entries|length > 1 ? 's' : '' }}{% if search %} pour « {{ search }} »{% endif %}

{% for entry in entries %} {% include '_partials/_directory_card.html.twig' with { entry: entry } %} {% endfor %}
{% else %}

Aucun professionnel trouve{% if search %} pour « {{ search }} »{% endif %}.

{% if search %} Effacer la recherche {% endif %}
{% endif %}
{% endblock %}