vendor/shopware/storefront/Resources/views/storefront/block/cms-block-image-gallery.html.twig line 1

Open in your IDE?
  1. {% block block_image_gallery %}
  2.     {% set element = block.slots.getSlot('imageGallery') %}
  3.     {% set columns = 1 %}
  4.     <div class="col-12" data-cms-element-id="{{ element.id }}">
  5.         {% block block_image_gallery_inner %}
  6.             {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  7.         {% endblock %}
  8.     </div>
  9. {% endblock %}