2025-07-14 07:33:32 +00:00
|
|
|
{# see `templates/archive.twig` for an alternative strategy of extending templates #}
|
|
|
|
{% extends 'layouts/base.twig' %}
|
|
|
|
|
|
|
|
{% block content %}
|
2025-08-13 08:58:35 +00:00
|
|
|
<section class="search-canvas ">
|
2025-08-21 07:21:36 +00:00
|
|
|
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">{{ post.title }}</p>
|
2025-08-13 08:58:35 +00:00
|
|
|
|
2025-08-21 07:21:36 +00:00
|
|
|
<p>{{ __('Resultados de búsqueda para', 'Sindikatua')}}: "{{ search_query }}"</p>
|
2025-08-13 08:58:35 +00:00
|
|
|
<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>
|
2025-07-14 07:33:32 +00:00
|
|
|
|
|
|
|
{% endblock %}
|