{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_noscript %}
{{ parent() }}
{% block shopstudio_pixelyourshop_top_body_code %}
{{ sspysRenderTopBodyCode()|raw }}
{% endblock %}
{% endblock %}
{% block base_body_script %}
{{ parent() }}
{% block shopstudio_pixelyourshop_bottom_body_code %}
{{ sspysRenderBottomBodyCode()|raw }}
{% endblock %}
{% block shopstudio_pixelyourshop_pixel_event_login %}
{% set transient = sspysGetTransient('login') %}
{% if transient %}
{{ sspysRenderPixelEventCode({
name: 'login'
})|raw }}
{% endif %}
{% endblock %}
{% block shopstudio_pixelyourshop_pixel_event_sign_up %}
{% set transient = sspysGetTransient('register') %}
{% if transient %}
{{ sspysRenderPixelEventCode({
name: 'register'
})|raw }}
{% endif %}
{% endblock %}
{% block shopstudio_pixelyourshop_pixel_event_contact %}
{% set transient = sspysGetTransient('contact') %}
{% if transient %}
{{ sspysRenderPixelEventCode({
name: 'contact'
})|raw }}
{% endif %}
{% endblock %}
{% block shopstudio_pixelyourshop_pixel_event_view_product %}
{% if page and page.product %}
{{ sspysRenderPixelEventCode({
name: 'view-product',
data: {
product: page.product|sspysMapProductToData
}
})|raw }}
{% endif %}
{% endblock %}
{% endblock %}