{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% block layout_head_canonical %}
{% if page.metaInformation.canonical %}
{% set canonicalUrl = page.metaInformation.canonical %}
{# Für Listing-Seiten: Paginierung als Parameter hinzufügen #}
{% if app.request.get('p') and app.request.get('p') != '1' %}
{% if '?' in canonicalUrl %}
{% set canonicalUrl = canonicalUrl ~ '&p=' ~ app.request.get('p') %}
{% else %}
{% set canonicalUrl = canonicalUrl ~ '?p=' ~ app.request.get('p') %}
{% endif %}
{% endif %}
<link rel="canonical" href="{{ canonicalUrl }}" />
{% endif %}
{% endblock %}