mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-29 06:38:54 +00:00
42 lines
1.5 KiB
Twig
42 lines
1.5 KiB
Twig
{% extends 'partials/simplesearch_base.html.twig' %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<article class="post simplesearch">
|
|
<header>
|
|
<div class="title">
|
|
|
|
{% block results %}
|
|
<div class="content-padding simplesearch">
|
|
<h1 class="search-header">{{ "PLUGIN_SIMPLESEARCH.SEARCH_RESULTS"|t }}</h1>
|
|
<div class="center">
|
|
{% include 'partials/simplesearch_searchbox_results.html.twig' %}
|
|
</div>
|
|
<p class="published" >
|
|
{% 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 %}
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</header>
|
|
{% for page in search_results %}
|
|
{% include 'partials/simplesearch_item.html.twig' with {'page':page} %}
|
|
{% endfor %}
|
|
</article>
|
|
|
|
{% endblock %}
|
|
{% block sidebar %}
|
|
{% include 'partials/sidebar_left.html.twig' %}
|
|
{% endblock %}
|