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

Open in your IDE?
  1. {% block block_product_heading %}
        {% set productNameElement = block.slots.getSlot('left') %}
        {% set manufacturerLogoElement = block.slots.getSlot('right') %}
    
        {% block block_product_heading_product_name_element %}
            <div class="col product-heading-name-container" data-cms-element-id="{{ productNameElement.id }}">
                {% block block_product_heading_product_name_inner %}
                    {% sw_include "@Storefront/storefront/element/cms-element-" ~ productNameElement.type ~ ".html.twig" ignore missing with {
                        element: productNameElement
                    } %}
                {% endblock %}
            </div>
        {% endblock %}
    
        {% block block_product_heading_product_manufacturer_logo_element %}
            <div class="col-md-auto product-heading-manufacturer-logo-container" data-cms-element-id="{{ manufacturerLogoElement.id }}">
                {% block block_product_heading_product_manufacturer_logo_inner %}
                    {% sw_include "@Storefront/storefront/element/cms-element-" ~ manufacturerLogoElement.type ~ ".html.twig" ignore missing with {
                        element: manufacturerLogoElement
                    } %}
                {% endblock %}
            </div>
        {% endblock %}
    {% endblock %}