{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% set active = page.header.extensions.bannerNotification['active'] %}
{# Checks if plugin is active and only displays banner in given timespan #}
{% if active %}
{% set position = page.header.extensions.bannerNotification['position'] %}
{% endif %}
{# Place banner notification above header #}
{% block base_header %}
{% if position == "top" %}
{% sw_include '@Storefront/storefront/component/wabs-banner-notification.html.twig' ignore missing %}
{% endif %}
{{ parent() }}
{% endblock %}
{# Place banner notification below navigation #}
{% block base_navigation %}
{{ parent() }}
{% if position == "nav" %}
{% sw_include '@Storefront/storefront/component/wabs-banner-notification.html.twig' ignore missing %}
{% endif %}
{% endblock %}
{# Place banner notification above or below footer #}
{% block base_footer %}
{% if position == "footer" %}
{% sw_include '@Storefront/storefront/component/wabs-banner-notification.html.twig' ignore missing %}
{{ parent() }}
{% elseif position == "bottom" %}
{{ parent() }}
{% sw_include '@Storefront/storefront/component/wabs-banner-notification.html.twig' ignore missing %}
{% else %}
{{ parent() }}
{% endif %}
{% endblock %}