{# div tag should only be outputted when a description is set #}
{% set title = content.title|default %}
{% if content.description %}
{% set content_descr = content.description %}
{% if '<p' in content_descr %}
<div class="pt-4 pt-lg-3 pb-3 block-{{content.type}} content-paragraphe wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0.2s">
<div class="max-container-2 font-16 text-grey mt-2 mx-auto text-center px-lg-5 {{ content.classT }}" >
{{ content.description|raw }}
{{title}}
{% if 'Découvrez Panda-Coworking' in content_descr %}
<div class="pt-3 text-center"><a href="/details" target="_blank" class="btn-link btn-showPopup transition-bgcolor bg-green-s minw-sm">Réserver</a></div>
{% elseif 'Rejoindre Panda-Coworking' in content_descr %}
<div class="pt-3 text-center"><a href="/details" target="_blank" class="btn-link btn-showPopup transition-bgcolor bg-green-s minw-sm">Réserver</a></div>
{% endif %}
</div>
</div>
{% elseif '<h3' in content_descr %}
<div class="pt-4 pt-lg-3 pb-3 block-{{content.type}} content-title-other wow fadeIn {{ content.classT }}" data-wow-duration="0.8s" data-wow-delay="0.2s">
<div class="max-container-4 font-20 mt-2 mx-auto text-center px-lg-5 ">
{{ content.description|raw }}
</div>
</div>
{% else %}
<div class="bloc-intro pt-4 wow fadeInDown" data-wow-duration="0.8s" data-wow-delay="0.2s">
<div class="max-container-4 bloc-txt-title block-{{content.type}} {{ content.classT }}">
{{ content.description|raw }}
</div>
</div>
{% endif %}
{% endif %}