templates/front/theme1/modele/bloc_content.html.twig line 1

Open in your IDE?
  1. <section class="hrz-home-area sec-content espace-p-top espace-p-bottom text-center" {% if widget.bgimage is defined and widget.bgimage != null %}style="background:linear-gradient(-45deg, rgb(0 0 0 / 78%), rgb(23 23 23 / 44%)) fixed, url({{asset_image(widget.bgimage)}}) " {% else %} style="background-color:{{widget.bgcolor}}"{% endif %}>
  2.     <div class="container-fluid wrapper">
  3.         <div class="row">
  4.             <div class="col-md-12">
  5.                 <div class="title sub-title wow fadeInUp" data-wow-delay="0.1s">{{widget.subTitle|raw}}</div>
  6.                     {% if widget.description is not empty %}
  7.                         <div class="texte-content wow fadeInUp" data-wow-delay="0.2s">
  8.                             {{widget.description|raw}}
  9.                         </div>
  10.                     {% endif %} 
  11.                     {% if widget.typelien is not empty and widget.typelien != 1 and widget.buttonlabel is not empty %}
  12.                         {% if widget.typelien == 2 %}
  13.                              <div class="bouton-home text-center">
  14.                                 <button class="btn btn-orange uppercase" onclick="window.location.href = '{{widget.lieninterne}}';" title="{{widget.buttonlabel}}">{{widget.buttonlabel}}</button>
  15.                             </div>
  16.                         {% elseif widget.typelien == 3 %}
  17.                             <div class="bouton-home text-center">
  18.                                 <button class="btn btn-orange uppercase" onclick="window.open('{{widget.lienexterne}}','_blank');" title="{{widget.buttonlabel}}">{{widget.buttonlabel}}</button>
  19.                             </div>
  20.                         {% elseif widget.typelien == 4 %}
  21.                             <div class="bouton-home text-center">
  22.                                 <a class="btn btn-orange uppercase" href="tel:{{widget.telephone}}" title="{{widget.buttonlabel}}">{{widget.buttonlabel}}</a>
  23.                             </div>
  24.                         {% endif %}
  25.                     {% endif %}
  26.                 </div>
  27.             </div>
  28.         </div>
  29.     </div>
  30. </section>