{# Référencement SEO - Textes et liens en bas de page #}
{% if taxon.referencement is not empty or referencementllinks is not empty %}
<div class="categorie-referencement">
<div class="categorie-referencement-ctn">
{% if referencementllinks is not empty %}
<h3>{{ 'app.front.block.referencement'|trans }}</h3>
<ul>
{% for link in referencementllinks %}
<li>
<a href="/{{ link.slug }}">{{ link.name }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% if app.request.locale == 'en_US' and taxon.referencementen|length != 0 %}
{% if taxon.referencementen|length != 0 %}
{# {% if taxon.referencement|length < 50 %} #}
{# <div>{{ taxon.referencement | raw }}</div> #}
{# {% else %} #}
<div>
<input type="checkbox" id="expanded-bottom">
<div class="voirplus-ctn">{{ taxon.referencementen|raw }}</div>
<label for="expanded-bottom" role="button">See more</label>
</div>
{# {% endif %} #}
{% endif %}
{% else %}
{% if taxon.referencement|length != 0 %}
{# {% if taxon.referencement|length < 50 %} #}
{# <div>{{ taxon.referencement | raw }}</div> #}
{# {% else %} #}
<div>
<input type="checkbox" id="expanded-bottom">
<div class="voirplus-ctn">{{ taxon.referencement|raw }}</div>
<label for="expanded-bottom" role="button">Voir plus</label>
</div>
{# {% endif %} #}
{% endif %}
{% endif %}
</div>
</div>
{% endif %}