templates/contact_snippet.html.twig line 1

Open in your IDE?
  1. {% if snippet_contact is defined and snippet_contact is not empty %}
  2.     <div class="knowmore dflex aic jcc contact-section mt-40px">
  3.         <img src="/resources/img/header-img/header-image.webp" srcset="/resources/img/header-img/header-image-300x.webp 300w, /resources/img/header-img/header-image-600x.webp 600w, /resources/img/header-img/header-image-1000x.webp 1000w" sizes="(max-width: 300px) 300w, (max-width: 600px) 600w, 1000w" alt="Rue de centre ville" loading="lazy" width="1440" height="470">
  4.         <div class="background-color"></div>
  5.         <div class="dflex jcsa fwwrap aic knowmore-container">
  6.             {% if not contact_off %}
  7.                 <div class="center first-elem mlr-1em">
  8.                     <div class="cwhite fw400 fs36 lh40 no-anchor">Vous souhaitez en savoir plus ?</div>
  9.                     <a href="{{ snippet_contact.content.link_contact }}" class="CTA nodeco diblock mt-2p5em lh28">Contactez-nous</a>
  10.                 </div>
  11.             {% endif %}
  12.             {% if not ressource_off %}
  13.                 <div class="center mlr-1em">
  14.                     <div class="cwhite fw400 fs36 lh40 no-anchor">Vous souhaitez contribuer ?</div>
  15.                     <a href="{{ snippet_contact.content.link_ressource }}" class="CTA CTA-white nodeco diblock mt-2p5em lh28">Proposez une ressource</a>
  16.                 </div>
  17.             {% endif %}
  18.         </div>
  19.     </div>
  20. {% endif %}