templates/front/slices/slice_push_contact.html.twig line 1

Open in your IDE?
  1. <section class="slice push-contact">
  2.     <div class="fluid-grid overflow-hidden bg-orange-light">
  3.         <div class="row items-center w-full">
  4.             <div class="col-12 md-col-6 lg-col-5 push-contact__left">
  5.                 <img data-src="/assets/front/question-mark.svg" alt="" aria-hidden="true" class="question-mark absolute lazyload">
  6.                 <div class="z-1 relative">
  7.                     <h2 class="title title--L text-white font-weight-semibold whitespace-nowrap">Un besoin ?<br />Une question ?</h2>
  8.                     <p class="paragraph mt-4 lg:mt-6 text-white whitespace-nowrap">Contactez nos experts du département !</p>
  9.                 </div>
  10.             </div>
  11.             <div class="col-12 md-col-6 lg-col-7 contact-list">
  12.             {% set addedClass = slice.contacts|length == 1 ? 'card-contact--horizontal' : 'card-contact--vertical' %}
  13.                 {% for contact in slice.contacts %}
  14.                     {% include 'front/partials/cards/contact.html.twig' with {addedClass} %}
  15.                 {% endfor %}
  16.             </div>
  17.         </div>
  18.     </div>
  19. </section>