{% if taxons %}
<div class="block-type7-content">
{% for taxon in taxons %}
{% set image_bg = '' %}
{% set icone_bg = '' %}
{% if null != taxon.images %}
{% for image in taxon.images %}
{% if image.type != 'icone' %}
{% set image_bg = asset('/media/image/'~image.path) %}
{% endif %}
{% endfor %}
{% if taxon.imagesByType('icone') is not empty %}
{% set icone_bg = asset('/media/image/'~taxon.imagesByType('icone').first.path) %}
{% endif %}
{% endif %}
<div class="taxon-ctn">
<div class="taxon">
<div class="content">
<h3>{{ taxon.name }}</h3>
<p>{{ taxon.description|raw }}</p>
</div>
{% if icone_bg %}
<div class="img-icone">
<img src="{{ icone_bg }}">
</div>
{% endif %}
{% if image_bg %}
<div class="img-ctn">
<img src="{{ image_bg }}">
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
{% endif %}