templates/api/api_search.html.twig line 1

Open in your IDE?
  1. {% set css = 'dflex fwwrap jcc visible' %}
  2. {% if structure is defined and (structure == 'fiches_territoires' or structure == 'experiences') %}
  3.   {% set css = '' %}
  4. {% endif %}
  5. {% if structure == 'fiches_territoires' or structure == 'experiences' %}
  6.   <div class="map-articles-previews-header">
  7.     {% if structure == 'fiches_territoires' %}
  8.       Listes des territoires
  9.     {% else %}
  10.       Listes des expériences
  11.     {% endif %}
  12.   </div>
  13. {% endif %}
  14. <div class="{{ css }}">
  15.     {% for i, hit in hits %}
  16.         {% set gt_first = "off" %}
  17.         {% if loop.first %}
  18.             {% set gt_first = "on" %}
  19.         {% endif %}
  20.         {% include "api/blocks/api_search_render.html.twig" with {id: hit.id, gt_first: gt_first} %}
  21.     {% endfor %}
  22. </div>
  23. {% include "blocks/sub-blocks/pagination.html.twig" %}