{% if subBlock.title is defined %}
{% if subBlock.button_link is defined %}
<a href="{{ subBlock.button_link }}" class="carousel-item {% if nbLoop == 1 %}active{% endif %}">
{% else %}
<div class="carousel-item {% if nbLoop == 1 %}active{% endif %}">
{% endif %}
<div class="d-block w-100" {% if subBlock.img_slide is defined %}style="background:url({{ asset('/uploads/' ~ subBlock.img_slide.0) }})no-repeat center;background-size:cover;height:500px"{% endif %}></div>
<div class="carousel-caption d-md-block">
{% if subBlock.title is defined %}<h3>{{ subBlock.title }}</h3>{% endif %}
{% if subBlock.slide_description_home and subBlock.slide_description_home is not empty %}<p>{{ subBlock.slide_description_home.0|raw|nl2br }}</p>{% endif %}
{% if subBlock.button_link %}
<div class="mt-5">
<span class="btn-round btn-white">{{ subBlock.button_label }}</span>
</div>
{% endif %}
</div>
{% if subBlock.button_link is defined %}
</a>
{% else %}
</div>
{% endif %}
{% endif %}