MODIFY searcher
This commit is contained in:
@ -2,17 +2,23 @@
|
||||
{% extends 'layouts/base.twig' %}
|
||||
|
||||
{% block content %}
|
||||
<div class="content-wrapper">
|
||||
{% for post in posts %}
|
||||
{% include ['partials/tease-' ~ post.type ~ '.twig', 'partials/tease.twig'] %}
|
||||
{% endfor %}
|
||||
<section class="search-canvas ">
|
||||
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">BÚSQUEDA</p>
|
||||
|
||||
<p>Resultados de búsqueda para: "{{ search_query }}"</p>
|
||||
<div class="content-wrapper">
|
||||
{% for post in posts %}
|
||||
{% include ['partials/tease-' ~ post.type ~ '.twig', 'partials/tease.twig'] %}
|
||||
{% endfor %}
|
||||
|
||||
{% include 'partials/pagination.twig' with {
|
||||
pagination: posts.pagination({
|
||||
show_all: false,
|
||||
mid_size: 3,
|
||||
end_size: 2
|
||||
})
|
||||
} %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% include 'partials/pagination.twig' with {
|
||||
pagination: posts.pagination({
|
||||
show_all: false,
|
||||
mid_size: 3,
|
||||
end_size: 2
|
||||
})
|
||||
} %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user