templates/navbar/templateTopNavbarPagesMobile.html.twig line 1

Open in your IDE?
  1. <li class="nav-item d-lg-none">
  2.     <a class="nav-link {% if path('partenaires') in currentUrl %}active{% endif %}" href="{{ path('partenaires') }}">
  3.         Partenaires distributeurs
  4.     </a>
  5. </li>
  6. {% for page in templateTopNavbarPages %}
  7.     <li class="nav-item d-lg-none">
  8.         <a class="nav-link {% if path('page', {seoUrl: page.seoUrl}) in currentUrl %}active{% endif %}" href="{{ path('page', {seoUrl: page.seoUrl}) }}">
  9.             {{ page.navbarTitre }}
  10.         </a>
  11.     </li>
  12. {% endfor %}