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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% set consentCookieKey = 'sw-consent-manager-accepted' %}
  3. {% block base_header %}
  4.     {% if config('SwagCustomNotification.config.showBanner') %}
  5.         {% sw_include '@SwagCustomNotification/storefront/layout/header/banner.html.twig' %}
  6.     {% endif %}
  7.     {{ parent() }}
  8. {% endblock %}
  9. {% block base_main %}
  10.     {% if config('SwagCustomNotification.config.showConsentPopup') %}
  11.         {% sw_include '@SwagCustomNotification/storefront/layout/modal/consent.html.twig' %}
  12.     {% endif %}
  13.     {{ parent() }}
  14.     {% if config('SwagCustomNotification.config.showInfoPopup') %}
  15.         {% sw_include '@SwagCustomNotification/storefront/layout/modal/info.html.twig' %}
  16.     {% endif %}
  17.     {% if config('SwagCustomNotification.config.showNewsletter') %}
  18.         {% sw_include '@SwagCustomNotification/storefront/layout/modal/newsletter-popup.html.twig' %}
  19.     {% endif %}
  20. {% endblock %}