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.             <div class="background-color-blue"></div>    
  12.     {% endif %}
  13. </div>
  14. {% if content.header_img is defined and content.header_img is not empty %}
  15.     {% if content.header_img.credits and content.header_img.credits is not empty %}
  16.         <div class="cgrey fs12 lh16 credit mt-8px">&copy; Crédit Photo
  17.             {{ content.header_img.credits }}</div>
  18.     {% endif %}
  19. {% endif %}