templates/navbar/templateNavbarPages.html.twig line 1

Open in your IDE?
  1. {% for page in templateNavbarPages %}
  2.     
  3. <li class="nav-item">
  4.     <a class="nav-link {% if path('page', {seoUrl: page.seoUrl}) in currentUrl %}active{% endif %}" href="{{ path('page', {seoUrl: page.seoUrl}) }}">
  5.         {{ page.navbarTitre }}
  6.     </a>
  7. </li>
  8. {% endfor %}