templates/frontend/components/_smallBanner.html.twig line 1

Open in your IDE?
  1. <div class="column {{ cssClass }} is-half-tablet">
  2.     {% if banner.url %}
  3.     <a href="{{ banner.url }}">
  4.         {% endif %}
  5.         <div style="background-image:url(/images/important/{{ banner.imageName }})" class="banner-single box">
  6.         </div>
  7.         <div class="column small-promo-column" style="background: {{ banner.bottomBackgroundColor }};">
  8.             <div class="small-promo-title {% if cta %}limit-width{% endif %}" style="color: {{ banner.bottomTextColor }}">{{ banner.title }}</div>
  9.             {% if cta %}
  10.                 {% if banner.bottomButtonText  %}
  11.                 <div class="small-button-container">
  12.                     <a class="btn-small-promo" href="{{ banner.url }}" style="background-color:{{ banner.bottomButtonColor }}!important; color:{{ banner.bottomButtonTextColor }}!important;">
  13.                         {{ banner.bottomButtonText }}
  14.                     </a>
  15.                 </div>
  16.                 {% endif %}
  17.             {% endif %}
  18.         </div>
  19.         {% if banner.url %}
  20.     </a>
  21.     {% endif %}
  22. </div>