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

Open in your IDE?
  1. {% set mediaTmp = page.pbandeau %}
  2. {% set mediaDefault = "default.jpg" %}
  3. {% set mediaTmp = webp(webpSupported, mediaTmp)|url_encode %}
  4. {% set mediaDefault = webp(webpSupported, mediaDefault)|url_encode %}
  5. <section data-bs-version="5.1" class="header1 cid-sYtfgmlx9v mbr-parallax-background" id="header1-2l"
  6.          style="background-image: url('{{ asset("/medias_front/pages/"~mediaTmp|default(mediaDefault))|imagine_filter('front_Bandeau_1920') }}')">
  7.     <div class=" mbr-overlay" style="opacity: 0; background-color: rgb(255, 255, 255);"></div>
  8.     <div class="align-center container">
  9.         <div class="row justify-content-center">
  10.             <div class="col-12 col-lg-12">
  11.                 {#                {% if page.ptitre %} #}
  12.                 {#                    <h1 class="mbr-section-title mbr-fonts-style mb-0 display-1">{{ page.ptitreonglet|default(page.ptitre) }}</h1> #}
  13.                 {#                {% endif %} #}
  14.             </div>
  15.         </div>
  16.     </div>
  17.     <div id="titrePage" class="pt-5 align-center container">
  18.         <div class="row justify-content-center">
  19.             <div class="col-12 col-lg-12">
  20.                 {% if page.ptitre %}
  21.                     <h1 class="BigTitle mbr-section-title mbr-fonts-style mb-0 display-1">{{ page.ptitreonglet|default(page.ptitre) }}</h1>
  22.                 {% endif %}
  23.             </div>
  24.         </div>
  25.     </div>
  26.     <div class="vagueBlanche vagueheader"></div>
  27. </section>