templates/website/product/product-list.html.twig line 1

Open in your IDE?
  1. {% extends 'website/main.template.html.twig' %}
  2. {% block body %}
  3.     {% include 'website/includes/search-section.html.twig' %}
  4.     {% embed 'website/includes/page-title.html.twig' with { pageTitle: title }%}
  5.         {% block migalhas %}
  6.             <a href="{{ path('home') }}">{{ getLanguage('home', 'product') }}</a>&ensp;/&ensp;<span>{{ title }}</span>
  7.         {% endblock %}
  8.     {% endembed %}
  9.     <div class="container">
  10.         <div class="products-list">
  11.             {% for course in productOffers %}
  12.                 {% include 'website/product/product-item-box-default.html.twig' with {'item': course } %}
  13.             {% endfor %}
  14.         </div>
  15.     </div>
  16. {% endblock %}