simplesearch_results.html.twig 941 B

1234567891011121314151617181920212223
  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 is same as( 1 ) %}
  12. {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_SINGULAR"|t(query|e)|raw }}
  13. {% else %}
  14. {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_PLURAL"|t(query|e, 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 %}