{% if content is defined and content is not empty and content|length > 0 and content|join(',') != "Autre" %}
<div class="mb-1em">
{% if title is defined and title is not empty and title|length > 0 %}
<div class="fw600">{{title|raw}}</div>
{% endif %}
<ul class="experience-ul">
{% set sortedValues = order_public_cible(content) %}
{% for item in sortedValues %}
{% if "Autre" not in item %}
<li>{{item}}</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}