vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/Resources/views/Homepage/_list.html.twig line 1

  1. {% if products|length == 4 %}
  2.     {% set columns = "two" %}
  3. {% endif %}
  4. {% if products|length == 3 %}
  5.     {% set columns = "three odd doubling" %}
  6. {% endif %}
  7. <div class="ui {{ columns|default('') }} cards">
  8.     {% for product in products %}
  9.         {% include '@SyliusShop/Product/_box.html.twig' %}
  10.     {% endfor %}
  11. </div>