{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% set tsConfig = config('trustedShopsApp.config') %}
{% set tsChannelId = context.salesChannel.id ?? null %}
{% block layout_head_javascript_tracking %}
{{ parent() }}
{% if tsChannelId is not null %}
{% if tsConfig[tsChannelId].widgets is defined and tsConfig[tsChannelId].widgets is not null %}
{% if tsConfig[tsChannelId].widgets is defined and expectedMapping[tsChannelId] === tsConfig[tsChannelId].widgets.eTrustedChannelRef %}
{% set widgetConfig = tsConfig[tsChannelId].widgets.children.0 %}
{% sw_include '@Storefront/storefront/includes/script-assembler.html.twig' with {
scriptConfig: widgetConfig
} %}
{% endif %}
{% endif %}
{% endif %}
{% endblock %}