{% set menu_items = menu_items() %}

🤝 Convivialité | Respect | Esprit d'équipe | Exigence

{% if is_granted('ROLE_USER') %} Déconnexion {% else %} Connexion Inscription {% endif %}
{% for item in menu_items %} {% if item.parent is null and item.isActive and (item.publishUntil is null or item.publishUntil >= "now"|date) and ( item.visibility == 'all' or (item.visibility == 'connected' and is_granted('ROLE_USER')) or (item.visibility == 'guest' and not is_granted('ROLE_USER')) or (item.visibility == 'admin' and is_granted('ROLE_ADMIN')) ) %} {% set isExternal = item.url is not empty and item.url starts with 'http' %} {% set href = item.url is not empty ? item.url : (item.route is not empty ? '/' ~ item.route : '#') %}
{{ icon(item.icon ?: 'circle') }} {{ item.title }} {% set children = item.children|filter(i => i.isActive and (i.publishUntil is null or i.publishUntil >= "now"|date)) %} {% if children|length > 0 %} {% endif %}
{% endif %} {% endfor %}
{% if is_granted('ROLE_USER') %}
{% else %}
{% endif %}