themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Homepage/_kitList.html.twig line 12

Open in your IDE?
  1. {% set block_kit_index = app_get_blocks('solar_kit_index', sylius.channel.code )  %}
  2. <section class="bloc-kit">
  3.     <div class="max-kit-content">
  4.         <h2 class="title-medium text-center text-uppercase big-onmobile">{{'app.common.solar_kit'|trans}}</h2>
  5.         <div class="text-center text-grey max-container-txt m-auto py-3 fontsize-normal">
  6.             {% if block_kit_index is defined and block_kit_index %}
  7.                 {{ block_kit_index.content|raw }}
  8.             {% endif %}
  9.         </div>
  10.         <div class="d-flex justify-content-center flex-wrap margin-row-kit pt-3 pb-md-4 pb-3">
  11.             {{ render(url('app_shop_partial_product_index_solarkit', {'count': 5, 'template': '@SyliusShop/Homepage/_list.html.twig'})) }}
  12.         </div>
  13.     </div>
  14. </section>