templates/frontend/block/accident.html.twig line 1

  1. <div class="block block-accident container">
  2.     <div class="block-part-content">
  3.         <div class="left">
  4.             {{ app_static_image_html('img/homepage/accident/image.jpg') }}
  5.         </div>
  6.         <div class="right">
  7.             <h2 class="block-part-title">Stala se Vám nehoda?</h2>
  8.             <p class="block-part-description">V případě nehody se na nás neváhejte obrátit. Pomůžeme Vám s vyřízením pojistné události, odtahové služby atp.</p>
  9.             <a href="tel:+420604225690" class="button button-primary button-invert button-transparent"><span>+420 604 225 690</span></a>
  10.         </div>
  11.     </div>
  12.     <div class="block-part-items">
  13.     {%
  14.         set items = [
  15.             { 'icon': 'img/homepage/accident/icon-1.svg', 'title': 'Nonstop odtahová služba' },
  16.             { 'icon': 'img/homepage/accident/icon-2.svg', 'title': 'Vyřešení pojistné události' },
  17.             { 'icon': 'img/homepage/accident/icon-3.svg', 'title': 'Jsme specialisté oprav po nehodách' },
  18.             { 'icon': 'img/homepage/accident/icon-4.svg', 'title': 'Volejte kdykoliv' },
  19.         ]
  20.     %}
  21.     {% for item in items %}
  22.         <div class="item">
  23.             {{ app_static_image_html(item.icon, { 'class': 'item-icon' }) }}
  24.             <span class="item-title">{{ item.title }}</span>
  25.         </div>
  26.     {% endfor %}
  27.     </div>
  28. </div>