simplesearch_results.html.twig 856 B

123456789101112131415161718192021222324
  1. {% extends 'partials/simplesearch_base.html.twig' %}
  2. {% block content %}
  3. <div class="content-padding simplesearch">
  4. <h1 class="search-header">{{"PLUGIN_SIMPLESEARCH.SEARCH_RESULTS"|t}}</h1>
  5. <div class="center">
  6. {% include 'partials/simplesearch_searchbox.html.twig' %}
  7. </div>
  8. <p>
  9. {% if query %}
  10. {% set count = search_results ? search_results.count : 0 %}
  11. {% if count == 1 %}
  12. {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_SINGULAR"|t(query)|raw }}
  13. {% else %}
  14. {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_PLURAL"|t(query, count)|raw }}
  15. {% endif %}
  16. {% endif %}
  17. </p>
  18. {% for page in search_results %}
  19. {% include 'partials/simplesearch_item.html.twig' with {'page':page} %}
  20. {% endfor %}
  21. </div>
  22. {% endblock %}