templates/front/front_news/header.html.twig line 1

Open in your IDE?
  1. {% set mediaTmp = '' %}
  2.     {% if catEnCours is defined and catEnCours is not null and catEnCours > 0 and categories[catEnCours].actCatBandeau %}
  3.         {% set mediaTmp = 'actualite/'~categories[catEnCours].actCatBandeau %}
  4.     {% elseif page.pbandeau is defined and page.pbandeau is not null and page.pbandeau != "" %}
  5.         {% set mediaTmp = 'pages/'~page.pbandeau %}
  6.     {% endif %}
  7. {% set mediaDefault = "default.jpg" %}
  8. {% set mediaTmp = webp(webpSupported, mediaTmp)|url_encode %}
  9. {% set mediaDefault = webp(webpSupported, mediaDefault)|url_encode %}
  10. <section data-bs-version="5.1" class="header1 cid-sYtfgmlx9v mbr-parallax-background" id="header1-2l"
  11.          style="background-color: #f6f6f6">
  12.     <div class=" mbr-overlay" style="opacity: 0; background-color: rgb(255, 255, 255);"></div>
  13.     <div class="align-center container">
  14.         <div class="row justify-content-center">
  15.             <div class="col-12 col-text col-lg-12">
  16.                 {% if page.ptitre %}
  17.                     <h1 class="mbr-section-title mbr-fonts-style mb-0 display-1">{{ page.ptitreonglet|default(page.ptitre) }}</h1>
  18.                 {% endif %}
  19.             </div>
  20.         </div>
  21.     </div>
  22. </section>