custom/static-plugins/top-banner/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% set wexoBanners = page.header.banner %}
  3. {% block base_header_inner %}
  4.     {% block page_header_inner_top_banner_render %}
  5.         {% if wexoBanners.top %}
  6.             {% sw_include '@wexoTopBanner/storefront/wexo-banner/wexo-banner-gate.html.twig' ignore missing with {
  7.                 wexoBanner: wexoBanners.top,
  8.                 page: page
  9.             } only %}
  10.         {% endif %}
  11.     {% endblock %}
  12.     {{ parent() }}
  13. {% endblock %}
  14. {% block base_flashbags %}
  15.     {{ parent() }}
  16.     {% block page_header_flashbags_top_banner_render %}
  17.         {% if wexoBanners.mid %}
  18.             {% sw_include '@wexoTopBanner/storefront/wexo-banner/wexo-banner-gate.html.twig' ignore missing with {
  19.                 wexoBanner: wexoBanners.mid,
  20.                 page: page
  21.             } only %}
  22.         {% endif %}
  23.     {% endblock %}
  24. {% endblock %}
  25. {% block base_footer %}
  26.     {% block page_header_footer_top_banner_render %}
  27.         {% if wexoBanners.bot %}
  28.             {% sw_include '@wexoTopBanner/storefront/wexo-banner/wexo-banner-gate.html.twig' ignore missing with {
  29.                 wexoBanner: wexoBanners.bot,
  30.                 page:page
  31.             } only %}
  32.         {% endif %}
  33.     {% endblock %}
  34.     {{ parent() }}
  35. {% endblock %}