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-10-20 07:36:24 +00:00
|
|
|
<p class="my-5 position-relative fs-5 fw-bold sp-module-title">{{ __('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 %}
|
|
|
|
|
|
2025-10-20 07:36:24 +00:00
|
|
|
{% set pagination = posts.pagination %}
|
|
|
|
|
<div class="pagination-custom mt-5">
|
|
|
|
|
{% include 'partials/pagination-custom.twig' %}
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-08-13 08:58:35 +00:00
|
|
|
</div>
|
|
|
|
|
</section>
|
2025-07-14 07:33:32 +00:00
|
|
|
|
|
|
|
|
{% endblock %}
|