templates/bundles/SyliusShopBundle/Product/Show/_associations.html.twig line 1

Open in your IDE?
  1. {% for association in product.associations %}
  2.     {{ render(url('sylius_shop_partial_product_association_show', {'productId': product.id, 'id': association.id, 'template': '@SyliusShop/Product/Show/_association.html.twig'})) }}
  3. {% else %}
  4.     <h4 class="text-4xl text-center font-bold">{{ 'sylius.ui.latest_products'|trans }}</h4>
  5.     <div data-js-products-carousel-id="latest-products">
  6.         {{ render(url('sylius_shop_partial_product_index_latest', {'count': 12, 'template': '@SyliusShop/Product/_horizontalList.html.twig'})) }}
  7.     </div>
  8. {% endfor %}