templates/articles-blocks/header.html.twig line 1

Open in your IDE?
  1. <div class="{% if content.header_img is defined and content.header_img is not empty %}main-title{% else %}small-main-title{% endif %} br8 dflex aic jcc">
  2.     {% if content.header_img is defined and content.header_img is not empty %}
  3.         <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 }}" class="br8 position-{{ view.header_img.displayOption }}" width="{{content.header_img.fileVersion.properties.width}}" height="{{content.header_img.fileVersion.properties.height}}">
  4.     {% endif %}
  5.     <div class="zi1 prelative team-project-head dflex jcc aic fdc">
  6.         <div class="center">
  7.             <h1 {% if content.header_img is defined and content.header_img is not empty %} class="cwhite" {% endif %}>{{ content.title }}</h1>
  8.         </div>
  9.     </div>
  10.     {% if content.header_img is defined and content.header_img is not empty %}
  11.         {% if name is defined and name is not empty and name == "groupe-travail" %}
  12.             <div class="background-color-turquoize"></div>
  13.         {% else %}
  14.             <div class="background-color-blue"></div>    
  15.         {% endif %}
  16.     {% endif %}
  17. </div>
  18. {% if content.header_img is defined and content.header_img is not empty %}
  19.     {% if content.header_img.credits and content.header_img.credits is not empty %}
  20.         <div class="cgrey fs12 lh16 credit mt-8px">&copy; Crédit Photo
  21.             {{ content.header_img.credits }}</div>
  22.     {% endif %}
  23. {% endif %}