<div id="filters-container" class="filters-container experiences open cblack w100">
<span class="fs20 fw500 pb-1em diblock">Ou filtrez les expériences par thématiques</span>
<ul id="filters-custom" class="w100 dflex fwwrap experiences">
{% for category in sulu_categories(app.request.locale, 'thematiques') %}
{% set this_category = load_category_by_id(category.id, 'fr') %}
<li class="thematiques{% if not loop.last %} pb-1em{% endif %}">
<label for="{{ category.key }}-{{ category.id }}">
<input id="{{ category.key }}-{{ category.id }}" type="checkbox" class="thematiques-check" value="{{ category.id }}">
<span class="label dflex aic thematiques-tag cwhite fw500" style="background: {{this_category.entity.color}}">{{ category.name }}</span>
<span class="checkmark"></span>
</label>
</li>
{% endfor %}
</ul>
</div>