templates/rendered/nav_categories.html.twig line 1

Open in your IDE?
  1. <div class="row nav-cat">
  2.     <p class="d-flex justify-content-around">
  3.     
  4.         {% for category in categories %}
  5.             <span class="d-inline"><a href="{{ path('app_show_services_from_category', {'category_title': category.title, 'id': category.id }) }}" class="cat-in-nav">{{ category.title }}</a></span> 
  6.         {% endfor %}
  7.     
  8.     </p>
  9. </div>