{% extends 'partials/simplesearch_base.html.twig' %} {% block menu %} {% include 'partials/sidebar_right.html.twig' %} {% endblock %} {% block content %}
{% block results %}

{{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS"|t }}

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

{% if query %} {% set count = search_results ? search_results.count : 0 %} {% if count is same as( 1 ) %} {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_SINGULAR"|t(query|e)|raw }} {% else %} {{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS_SUMMARY_PLURAL"|t(query|e, count)|raw }} {% endif %} {% endif %}

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