{# templates/visiteur/components/_navbar.html.twig #} {% set currentPath = app.request.pathinfo %} {% set navItems = [ { label: "Accueil", path: path('app_home'), route: '/' }, { label: "À propos", path: path('app_about'), route: '/a-propos' }, { label: "Programmes", path: path('app_programmes'), route: '/programmes' }, { label: "Construction-Vente", path: path('app_construction_vente'), route: '/construction-vente' }, { label: "Galerie", path: path('app_gallery'), route: '/galerie' }, { label: "Actualités", path: path('app_news'), route: '/actualites' }, { label: "Contact", path: path('app_contact'), route: '/contact' } ] %} {# Logo #} L LUXIM {# Desktop nav #} {% for item in navItems %} {% set isActive = (currentPath == item.route) %} {{ item.label }} {% endfor %} {# CTA Desktop #} Espace client {# Mobile toggle #} {# Mobile nav #} {% for item in navItems %} {% set isActive = (currentPath == item.route) %} {{ item.label }} {% endfor %} Espace client