custom/apps/SwagCustomNotification/Resources/views/storefront/layout/header/banner.html.twig line 1

  1. <div class="swag-custom-notification-banner"
  2.      data-hide-on-click-container
  3.      style="
  4.          background-color: {{ config('SwagCustomNotification.config.bannerBackgroundColor') }};
  5.          color: {{ config('SwagCustomNotification.config.bannerFontColor') }}
  6.      ">
  7.     {% if config('SwagCustomNotification.config.bannerMarquee') %}
  8.         <marquee>
  9.             {{ 'SwagCustomNotification.banner.text'|trans }}
  10.         </marquee>
  11.     {% else %}
  12.         <span class="swag-custom-notification-banner-text">
  13.             {{ 'SwagCustomNotification.banner.text'|trans }}
  14.         </span>
  15.     {% endif %}
  16.     {% if config('SwagCustomNotification.config.bannerClosable') %}
  17.         <span class="swag-custom-notification-banner-close-icon icon icon-x icon-xs"
  18.               data-hide-on-click-button
  19.               style="color: {{ config('SwagCustomNotification.config.bannerFontColor') }};">
  20.             {% sw_icon 'x' %}
  21.         </span>
  22.     {% endif %}
  23. </div>