templates/filter/blocks/filter-li.html.twig line 1

Open in your IDE?
  1. {% for i, searchKeyword in searchKeywordArray %}
  2.     <li class="thematiques ptb-1em">
  3.         <label for="{{ searchKeyword }}">
  4.             <input id="{{ searchKeyword }}" type="checkbox" class="{{ class }}-check" value="{{ searchKeyword }}">
  5.             <span class="label dflex aic">{{ string[i] }}</span>
  6.             <span class="checkmark"></span>
  7.         </label>
  8.     </li>
  9. {% endfor %}