templates\parts\_alert.html.twig line 1

Open in your IDE?
  1. {% if alerts is defined %}    
  2.     {% for alert in alerts %}
  3.     {#{{dump(alert["attention_description"])}}#}
  4.         <div class="attention js-alert">
  5.           <div class="attention__icon">
  6.             {% include 'parts/_img.html.twig' with {'imageName': alert['image-path'], 'imageAlt':alert['alt-text']} %}
  7.           </div>
  8.           <div class="attention__content">
  9.             <div class="attention__title">{{ alert["attention_content"]| raw }}</div>
  10.             <div class="attention__description">{{alert["attention_description"]| raw}}</div>
  11.           </div>
  12.           <div class="attention__buttons">
  13.             <a href="{{ alert["attention_btn_link"] }}" target="{{ alert["attention_btn_link_target"] }}" class="btn btn--md attention__btn">
  14.               <span>{{alert["attention_btn"]}}</span>
  15.             </a>
  16.             <a href="#" class="attention__close js-alert-close">
  17.               <svg width="24" height="25" viewBox="0 0 24 25" fill="none">
  18.                 <path d="M18.0022 6.48755L5.99707 18.4927" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  19.                 <path d="M18.0063 18.5L5.99121 6.48236" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  20.               </svg>        
  21.             </a>
  22.           </div>
  23.         </div>    
  24.     {% endfor %}
  25. {% endif %}