custom/plugins/HBCTheme/src/Resources/views/storefront/block/cms-block-gallery-buybox.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/block/cms-block-gallery-buybox.html.twig' %}
  2. {# ----- changed cols for detail-media ----- #}
  3. {% block block_gallery_buybox_column_left %}
  4.     {% set element = block.slots.getSlot('left') %}
  5.     {% set config = element.fieldConfig.elements %}
  6.     <div class="col-lg-5 product-detail-media" data-cms-element-id="{{ element.id }}">
  7.         {% block block_gallery_buybox_column_left_inner %}
  8.             {{ parent() }}
  9.         {% endblock %}
  10.     </div>
  11. {% endblock %}
  12. {# ----- changed cols for buy-box right ----- #}
  13. {% block block_gallery_buybox_column_right %}
  14.     {% set element = block.slots.getSlot('right') %}
  15.     <div class="offset-lg-2 col-lg-5 product-detail-buy" data-cms-element-id="{{ element.id }}">
  16.         {% block block_gallery_buybox_column_right_inner %}
  17.             {{ parent() }}
  18.         {% endblock %}
  19.     </div>
  20. {% endblock %}