{% 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, 'me-1') }}{% endif %} {{ cat.name }} {% endfor %}
{% endif %} {# --- Filtres par familles de tags (genere automatiquement) --- #} {% if activeTagGroups is not empty %}
{% for group in activeTagGroups %} {% set groupTags = group.tags|filter(t => t.directoryEntries|filter(d => d.isActive)|length > 0) %} {% if groupTags|length > 0 %}
{{ group.name }} {% for tag in groupTags %} {% set isActiveTag = tag.slug in activeTagSlugs %} {% set newTags = isActiveTag ? activeTagSlugs|filter(s => s != tag.slug) : activeTagSlugs|merge([tag.slug]) %} {{ tag.name }} {% endfor %}
{% endif %} {% endfor %} {% if activeTagSlugs is not empty %} Effacer les filtres tags {% endif %}
{% 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 %}