{% sw_extends '@Storefront/storefront/page/product-detail/meta.html.twig' %}
{% block layout_head_canonical %}
{% set canonicalUrl = page.product.id %}
{% if page.product.parentId %}
{% set canonicalUrl = page.product.parentId %}
{% endif %}
{% if page.product.canonicalProductId %}
{% set canonicalUrl = page.product.canonicalProductId %}
{% endif %}
<link rel="canonical" href="{{ seoUrl('frontend.detail.page', { productId: canonicalUrl }) }}" />
{% endblock %}
{% block layout_head_meta_tags_robots %}
{% if page.product.manufacturer and page.product.manufacturer.customFields.custom_hersteller_noindex == context.salesChannel.id %}
noindex,follow
{% else %}
{{ metaInformation.robots }}
{% endif %}
{% endblock %}