{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_header %}
<header class="header-main">
{% block base_header_inner %}
{% sw_include '@Storefront/storefront/layout/header/header.html.twig' %}
{% endblock %}
</header>
{% if theme_config('sw-contact-phone-link') or theme_config('sw-contact-email-link') %}
<div class="floating-cta">
{% if theme_config('sw-contact-phone-link') %}
<div class="cta-item">
<p><a href="tel:{{ theme_config('sw-contact-phone-link') }}">{{ theme_config('sw-contact-phone-link') }}</a></p>
{% sw_icon 'phone-icon' style {'namespace': 'DecomTheme' } %}
</div>
{% endif %}
{% if theme_config('sw-contact-email-link') %}
<div class="cta-item">
<p><a href="mailto:{{ theme_config('sw-contact-email-link') }}">{{ theme_config('sw-contact-email-link') }}</a></p>
{% sw_icon 'email-icon' style {'namespace': 'DecomTheme' } %}
</div>
{% endif %}
</div>
{% endif %}
{% endblock %}
{% block base_navigation %}
{% endblock %}
{% block base_breadcrumb %}
{% if controllerName == 'Product' %}
{% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
context: context,
category: page.product.seoCategory,
misc: page.product
} only %}
{% else %}
{% sw_include '@Storefront/storefront/layout/breadcrumb.html.twig' with {
context: context,
category: page.product.seoCategory
} only %}
{% endif %}
{% endblock %}