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

Open in your IDE?
  1. <section data-bs-version="5.1"
  2.          class="pb-5 pt-5 article1 cid-sYteQq2jTy text-type-{{ bloc.bloc_type_texte_image|default(0) }} {{ bloc.bloc_margin_top }} {{ bloc.bloc_margin_bottom }}"
  3.          id="article1-2j">
  4.     <div class="container col-lg-8 p-lg-5 pb-5 p-4">
  5.         <div class="row justify-content-center">
  6.             <div class="col-md-12 col-lg-9 p-lg-5 p-4 blocTextePage">
  7.                 {% if bloc.bloc_titre or bloc.bloc_sstitre %}
  8.                     <div class="section-head ">
  9.                         {% if bloc.bloc_titre %}
  10.                             <h3 class="mbr-section-title mbr-fonts-style display-2">
  11.                                 <strong>{{ bloc.bloc_titre }}</strong>
  12.                             </h3>
  13.                         {% endif %}
  14.                         {% if bloc.bloc_sstitre %}
  15.                             <h4 class="mbr-section-subtitle mbr-fonts-style display-5">
  16.                                 {{ bloc.bloc_sstitre }}
  17.                             </h4>
  18.                         {% endif %}
  19.                     </div>
  20.                 {% endif %}
  21.                 <div class="mbr-text mbr-fonts-style display-4 text-justify bloc-text column-count-{{ bloc.bloc_multi_column }}">
  22.                     {{ bloc.bloc_texte|raw }}
  23.                 </div>
  24.             </div>
  25.         </div>
  26.     </div>
  27. </section>