templates/home/blocks/happy_baby.html.twig line 1

Open in your IDE?
  1. <section id="happyBaby" class="bg-grey-light" style="background:{% if data.img_background is defined %}url({{ asset('uploads/'~data.img_background.0) }})no-repeat center;{% else %}url({{ asset('img/happy_baby_bg.png') }})no-repeat center;{% endif %}background-size:cover">
  2.     <div class="row container p-0">
  3.         <div class="col-md-5 innerblock">
  4.             {% if data.title is defined %}<h2 class="red">{{ data.title }}</h2>{% endif %}
  5.             <p class="mt-4">
  6.                 {% if data.description is defined %}
  7.                     {{ data.description.0|raw|nl2br }}
  8.                 {% endif %}
  9.             </p>
  10.             {#{dump(data)}#}
  11.             {% if data.button_link == '#'%}
  12.                 {% set url = "fr/happy-baby" %}
  13.             {% else %}
  14.                 {% set url = data.button_link %}
  15.             {% endif %}
  16.             {% if data.button_label %}
  17.                 <div class="mt-4 btn">
  18.                     <a href="{{ url }}" class="btn-round btn-red">{{ data.button_label }}</a>
  19.                 </div>
  20.             {% endif %}
  21.         </div>
  22.     </div>
  23. </section>