custom/plugins/UandiCustomCmsElements/src/Resources/views/storefront/block/cms-block-hero-image-with-text-left.html.twig line 1

Open in your IDE?
  1. {% block block_hero_image_with_text_left %}
  2.     {% block block_hero_image_with_text_left_text %}
  3.         {% set element = block.slots.getSlot('text') %}
  4.         <div class="col-md-4" data-cms-element-id="{{ element.id }}">
  5.             {% block block_hero_image_with_text_left_text_inner %}
  6.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  7.             {% endblock %}
  8.         </div>
  9.     {% endblock %}
  10.     {% block block_hero_image_with_text_left_image %}
  11.         {% set element = block.slots.getSlot('image') %}
  12.         <div class="col-md-8" data-cms-element-id="{{ element.id }}">
  13.             {% block block_hero_image_with_text_left_image_inner %}
  14.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  15.             {% endblock %}
  16.         </div>
  17.     {% endblock %}
  18. {% endblock %}