templates/front/histories.html.twig line 1

Open in your IDE?
  1. <div class="position-relative ">
  2.     <div class="line-slick position-absolute max-15 zi--1 bgc-555555 t-33 r-0 l-0 he-2"></div>
  3.     {% if getHistories()|length > 3 %}
  4.         <div class="zi-9 pointer prev-hist br-50 t-10-sm t-15 he-48-sm he-40 wi-40 wi-48-sm bw-2 bs-solid bc-15683A d-flex align-items-center justify-content-center position-absolute l--50-sm l--25 ">
  5.             <i class="fas fa-arrow-left fs-21 c-15683A" aria-hidden="true"></i>
  6.         </div>
  7.         <div class="zi-9 pointer next-hist br-50 t-10-sm t-15 he-48-sm he-40 wi-40 wi-48-sm bw-2 bs-solid bc-15683A d-flex align-items-center justify-content-center position-absolute r--50-sm r--25 ">
  8.             <i class="fas fa-arrow-right fs-21 c-15683A" aria-hidden="true"></i>
  9.         </div>
  10.     {% endif %}
  11.     <div class="slick-histories">
  12.         {% for key, history in getHistories()|reverse %}
  13.             <div class="pax-20 text-center text-md-left">
  14.                 <div class="he-65 d-flex align-items-center justify-content-center">
  15.                     <div class="img-slick-histories br-100 justify-content-center text-center d-flex mx-auto align-items-center {{ history.isHighlight ? "highLight wi-64 he-64 bgc-15683A " : 'bgc-F7F6F2 wi-52 he-52' }}">
  16.                         <img src="{{ history.historyCategory ? asset(vich_uploader_asset(history.historyCategory, 'historyCategoryFile')) : asset('assets/img/defhis.svg') }}"
  17.                              alt="{{ history.title }}" class="{{ history.isHighlight ? "wi-40 he-40 " : 'wi-34 he-34 ' }}"/>
  18.                     </div>
  19.                 </div>
  20.                 <div class="text-center dateHistory gilroy-bold may-10">
  21.                     {{ history.year }}
  22.                 </div>
  23.                 <h4 class=" {{ history.isHighlight ? "c-15683A" : 'c-333333' }} fs-16 gilroy-bold lh2-14 may-10"> {{ history.title }}</h4>
  24.                 <div class="c-555555 fs-16 lh2-14">{{ history.description|raw }}</div>
  25.             </div>
  26.         {% endfor %}
  27.     </div>
  28. </div>