custom/apps/SwagCustomNotification/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
    {% set consentCookieKey = 'sw-consent-manager-accepted' %}
    
    {% block base_header %}
        {% if config('SwagCustomNotification.config.showBanner') %}
            {% sw_include '@SwagCustomNotification/storefront/layout/header/banner.html.twig' %}
        {% endif %}
    
        {{ parent() }}
    {% endblock %}
    
    {% block base_main %}
        {% if config('SwagCustomNotification.config.showConsentPopup') %}
            {% sw_include '@SwagCustomNotification/storefront/layout/modal/consent.html.twig' %}
        {% endif %}
    
        {{ parent() }}
    
        {% if config('SwagCustomNotification.config.showInfoPopup') %}
            {% sw_include '@SwagCustomNotification/storefront/layout/modal/info.html.twig' %}
        {% endif %}
    
        {% if config('SwagCustomNotification.config.showNewsletter') %}
            {% sw_include '@SwagCustomNotification/storefront/layout/modal/newsletter-popup.html.twig' %}
        {% endif %}
    {% endblock %}