templates/front/front_page/bloc-texte.html.twig line 1

Open in your IDE?
  1. <section data-bs-version="5.1"
  2.          class="pb-5 pt-0 article1 cid-sYteQq2jTy text-type-{{ bloc.bloc_type_texte_image|default(0) }} {{ bloc.bloc_margin_top }} {{ bloc.bloc_margin_bottom }}"
  3. >
  4.     {% if bloc.bloc_type_texte_image|default(0) == 0 %}
  5.     <div class="containerConten">
  6.         <div class="degraderBlancImageTop"></div>
  7.         {% endif %}
  8.         {#    {{ include('front/front_page/nav_ariane.html.twig') }} #}
  9.         <div class="container col-lg-8 p-lg-5 pb-5 p-4">
  10.             <div class="row justify-content-center">
  11.                 <div class="textBlocContainer col-md-12 col-lg-11 p-lg-5 p-4">
  12.                     {% if bloc.bloc_titre or bloc.bloc_sstitre %}
  13.                         <div class="section-head ">
  14.                             {% if bloc.bloc_titre %}
  15.                                 <h3 class="mbr-section-title mbr-fonts-style display-2">
  16.                                     <strong>{{ bloc.bloc_titre }}</strong>
  17.                                 </h3>
  18.                             {% endif %}
  19.                             {% if bloc.bloc_sstitre %}
  20.                                 <h4 class="flechebash4 mbr-section-subtitle mbr-fonts-style display-5 flechebash4">
  21.                                     {{ bloc.bloc_sstitre }}
  22.                                 </h4>
  23.                             {% endif %}
  24.                         </div>
  25.                     {% endif %}
  26.                     <div class="pb-sm-2  ps-sm-5 pe-sm-5  pb-2 p-3 ps-2 pe-2 mbr-text mbr-fonts-style display-4 bloc-text column-count-{{ bloc.bloc_multi_column }}">
  27.                         {{ bloc.bloc_texte|raw }}
  28.                     </div>
  29.                 </div>
  30.             </div>
  31.         </div>
  32.     </div>
  33. </section>