vendor/shopware/storefront/Resources/views/storefront/block/cms-block-product-heading.html.twig line 1

Open in your IDE?
  1. {% block block_product_heading %}
  2.     {% set productNameElement = block.slots.getSlot('left') %}
  3.     {% set manufacturerLogoElement = block.slots.getSlot('right') %}
  4.     {% block block_product_heading_product_name_element %}
  5.         <div class="col product-heading-name-container" data-cms-element-id="{{ productNameElement.id }}">
  6.             {% block block_product_heading_product_name_inner %}
  7.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ productNameElement.type ~ ".html.twig" ignore missing with {
  8.                     element: productNameElement
  9.                 } %}
  10.             {% endblock %}
  11.         </div>
  12.     {% endblock %}
  13.     {% block block_product_heading_product_manufacturer_logo_element %}
  14.         <div class="col-md-auto product-heading-manufacturer-logo-container" data-cms-element-id="{{ manufacturerLogoElement.id }}">
  15.             {% block block_product_heading_product_manufacturer_logo_inner %}
  16.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ manufacturerLogoElement.type ~ ".html.twig" ignore missing with {
  17.                     element: manufacturerLogoElement
  18.                 } %}
  19.             {% endblock %}
  20.         </div>
  21.     {% endblock %}
  22. {% endblock %}