<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">
<div class="row container p-0">
<div class="col-md-5 innerblock">
{% if data.title is defined %}<h2 class="red">{{ data.title }}</h2>{% endif %}
<p class="mt-4">
{% if data.description is defined %}
{{ data.description.0|raw|nl2br }}
{% endif %}
</p>
{#{dump(data)}#}
{% if data.button_link == '#'%}
{% set url = "fr/happy-baby" %}
{% else %}
{% set url = data.button_link %}
{% endif %}
{% if data.button_label %}
<div class="mt-4 btn">
<a href="{{ url }}" class="btn-round btn-red">{{ data.button_label }}</a>
</div>
{% endif %}
</div>
</div>
</section>