templates/filter/experiences_filter.html.twig line 1

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