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.             Liste des territoires
  9.         {% else %}
  10.             Liste des expériences
  11.         {% endif %}
  12.     </div>
  13. {% endif %}
  14. <div class="previews-cont{{ css }}">
  15.     {% for i, hit in hits %}
  16.         {% include "api/blocks/api_search_render.html.twig" with {id: hit.id} %}
  17.     {% endfor %}
  18. </div>
  19. {% if structure != 'fiches_territoires' and structure != 'experiences' %}
  20.     {% include "blocks/sub-blocks/pagination.html.twig" %}
  21. {% endif %}