{% extends 'partials/base.html.twig' %} {% block content %}

{{"PLUGIN_SIMPLESEARCH.SEARCH_RESULTS"|t}}

{% include 'partials/simplesearch_searchbox.html.twig' %}

{% if search_results.count == 1 %} {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_SINGULAR"|t(query) }} {% else %} {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_PLURAL"|t(query, search_results.count) }} {% endif %}

{% for page in search_results %} {% include 'partials/simplesearch_item.html.twig' with {'page':page} %} {% endfor %}
{% endblock %}