vendor/shopware/storefront/Resources/views/storefront/component/product/card/meta.html.twig line 1

Open in your IDE?
  1. {% block component_product_box_rich_snippets_inner %}
        {# @deprecated tag:v6.5.0 - File and Block will be removed completely #}
    
        {% block component_product_box_rich_snippets_brand %}
            <div itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
                <meta itemprop="name" content="{{ product.manufacturer.translated.name }}" />
            </div>
        {% endblock %}
    
        {% block component_product_box_rich_snippets_gtin13 %}
            {% set ean = product.ean %}
            {% if ean %}
                <meta itemprop="gtin13"
                      content="{{ ean }}"/>
            {% endif %}
        {% endblock %}
    
        {% block component_product_box_rich_snippets_mpn %}
            {% if product.manufacturerNumber %}
                <meta itemprop="mpn"
                      content="{{ product.manufacturerNumber }}"/>
            {% endif %}
        {% endblock %}
    {% endblock %}