templates/front/catalog/category/subcategories.html.twig line 7

Open in your IDE?
  1. <div class="subcategories">
  2. {% for child in children %}
  3. <div class="title-ctn">
  4. <h2 class="title">{{ child.name }} <a href="{{ path('category',{id:child.id,'url':child.url}) }}">{% trans %}tout voir{% endtrans %}</a></h2>
  5. <hr>
  6. </div>
  7. {% include 'front/catalog/product/carousel.html.twig' with { products:attribute(subcategories,child.id), productTitleTag:'h3' }%}
  8. {% endfor %}
  9. </div>