templates/pages/headers/pqna-page-header.html.twig line 1

Open in your IDE?
  1. {% if content.fil_ariane is defined and content.fil_ariane is not empty %}
  2.     {% include "blocks/breadcrumb-normal.html.twig" with {pabsolute: true} %}
  3. {% endif %}
  4. {% if content.header_img is defined and content.header_img is not empty %}
  5.     {# pas de loading=lazy ici car c'est le LPC (largest painted content) qui apparaît dès l'arrivée sur le site #}
  6.     <img src="{{ content.header_img.formats['1000x.webp'] }}" srcset="{{ content.header_img.formats['300x.webp'] }} 300w, {{ content.header_img.formats['600x.webp'] }} 600w, {{ content.header_img.formats['1000x.webp'] }} 1000w" sizes="1000px" alt="{{ content.header_img | copyright_or_description_or_title }}" width="{{ content.header_img.fileVersion.properties.width }}" height="{{ content.header_img.fileVersion.properties.height }}">
  7. {% endif %}
  8. <div class="zi1 prelative team-project-head dflex jcc aic fdc mb-60px">
  9.     {% if content.page_title is defined and content.page_title is not empty %}
  10.         <h1 class="mt-60px center{% if content.header_img is defined and content.header_img is not empty %} cwhite{% endif %}">
  11.             {{ content.page_title }}
  12.         </h1>
  13.     {% endif %}
  14.     {% if content.chapo is defined and content.chapo is not empty %}
  15.         <div class="mt-1em mlr-1em fw500 fs20 text{% if content.header_img is defined and content.header_img is not empty %} cwhite{% else %} cgrey{% endif %}">
  16.             {{ content.chapo|raw }}
  17.         </div>
  18.     {% endif %}
  19. </div>