templates/front/front_news/bloc-image.html.twig line 1

Open in your IDE?
  1. {% set type = bloc.act_bloc_type_texte_image|default(0) %}
  2. {% set adLiip = "" %}
  3. {% if type == 0 %}
  4.     {% set adLiip = "_0" %}
  5. {% endif %}
  6. {% set mediaTmp = medias[0].act_media_fichier %}
  7. {% set mediaDefault = "default.jpg" %}
  8. {% set mediaTmp = webp(webpSupported, mediaTmp) %}
  9. {% set mediaDefault = webp(webpSupported, mediaDefault) %}
  10. {% if type != 2 %}
  11.     <section data-bs-version="5.1"
  12.              class="image3 agencym4_image3 cid-sYtkRmM6mF {{ bloc.act_bloc_margin_top }} {{ bloc.act_bloc_margin_bottom }}"
  13.              id="image3-33">
  14.         <figure class="mbr-figure container">
  15.             <div class="image-block {% if type == 0 %}w-75{% elseif type == 1 %}w-100{% endif %}">
  16.                 <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" width="1400"
  17.                      alt=""
  18.                      loading="lazy" class="lazyload"
  19.                      data-src="{{ asset('/medias_front/actualite/' ~ mediaTmp) | imagine_filter('front_blocImage'~adLiip) }}">
  20.             </div>
  21.             <figcaption class="mbr-figure-caption mbr-figure-caption-over">
  22.                 <div class="container pb-5 mbr-white align-center mbr-fonts-style display-1">
  23.                     {% if bloc.act_bloc_titre %}
  24.                         <h3 class="mbr-section-title mbr-fonts-style display-2">
  25.                             <strong>{{ bloc.act_bloc_titre }}</strong>
  26.                         </h3>
  27.                     {% endif %}
  28.                     {% if bloc.act_bloc_sstitre %}
  29.                         <h4 class="mbr-section-subtitle mbr-fonts-style display-5">
  30.                             {{ bloc.act_bloc_sstitre }}
  31.                         </h4>
  32.                     {% endif %}
  33.                 </div>
  34.             </figcaption>
  35.         </figure>
  36.     </section>
  37. {% endif %}
  38. {% if type == 2 %}
  39.     <section data-bs-version="5.1" class="image1 woodm4_image1 cid-sYtkwjjoQl mbr-parallax-background" id="image01-31"
  40.              style="background-image: url('{{ asset('/medias_front/actualite/' ~ mediaTmp) | imagine_filter('front_blocImage'~adLiip) }}')">
  41.         <div class="container">
  42.         </div>
  43.     </section>
  44. {% endif %}