templates/navbar/templateTopNavbarPages.html.twig line 1

Open in your IDE?
  1. <a class="d-flex rs mr-1 {% if  path('partenaires') in currentUrl %}active{% endif %}" href="{{  path('partenaires') }}">
  2.     <p class="navbar-magasin-text">
  3.         Partenaires distributeurs
  4.     </p>
  5. </a>
  6. {% for page in templateTopNavbarPages %}
  7.     <a class="d-flex rs mr-1 {% if path('page', {seoUrl: page.seoUrl}) in currentUrl %}active{% endif %}" href="{{ path('page', {seoUrl: page.seoUrl}) }}">
  8.         <p class="navbar-magasin-text">
  9.             {{ page.navbarTitre }}
  10.         </p>
  11.     </a>
  12. {% endfor %}