templates/bundles/SyliusShopBundle/Homepage/_list.html.twig line 1

Open in your IDE?
  1. {#{% if products|length == 4 %}#}
  2. {#    {% set columns = "three odd doubling" %}#}
  3. {#{% endif %}#}
  4. {#{% if products|length == 3 %}#}
  5. {#    {% set columns = "three odd doubling" %}#}
  6. {#{% endif %}#}
  7. {#{% if products|length == 6 %}#}
  8. {#    {%  set columns = "three odd doubling" %}#}
  9. {#{% endif %}#}
  10. <div class="ui three odd doubling cards">
  11.     {% for product in products %}
  12.         {% include '@SyliusShop/Product/_box.html.twig'  %}
  13.     {% endfor %}
  14. </div>