carhop__dynamiques-theme__P.../search.php
Nonimart 477376af4d
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Introducing the Search results page and behaviour
2025-10-15 11:36:46 +02:00

66 lines
2.1 KiB
PHP

<?php get_header(); ?>
<div class="search-results-page ">
<section class="search-results-page__page-header">
<div class="inner">
<div class="search-results-page__page-header__content__titling">
<p>Rechercher</p>
<h1 class="section_titling__title">
<?php echo __("Résultats de recherche pour : ", "homegrade-theme__texte-fonctionnel") ?>
<span class="search-results-page__current-term">« <?php echo get_search_query(); ?> »</span>
</h1>
</div>
</div>
<img decoding="async" class="block-content-page-header__page-icon" src="<?php echo get_template_directory_uri() . "/resources/img/illustrations/homegrade_rechercher.svg" ?>" alt="">
</section>
<div class="search-results-page__results-container">
<div class="search-results-page__results-counter">
<p class="post-count">
<span class="post-count__count"><?php echo $wp_query->found_posts; ?></span>
<span class="post-count__text">résultats</span>
</p>
</div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="search-results-card">
<h2 class="search-results-page__results-container__item__content__title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h2>
<div class="search-results-page__results-container__item__content__excerpt">
<?php the_excerpt(); ?>
</div>
<a href="<?php the_permalink(); ?>" class="search-results-card__link">
<?php echo __('Lire la suite', 'homegrade-theme__texte-fonctionnel'); ?> →
</a>
</div>
<?php endwhile; ?>
<!-- Pagination -->
<div class="search-results-pagination">
<?php
the_posts_pagination(array(
'mid_size' => 2,
'prev_text' => __('« Précédent', 'homegrade-theme__texte-fonctionnel'),
'next_text' => __('Suivant »', 'homegrade-theme__texte-fonctionnel'),
));
?>
</div>
<?php else : ?>
<p class="no-results"><?php echo __('Aucun résultat trouvé pour votre recherche.', 'homegrade-theme__texte-fonctionnel'); ?></p>
<?php endif; ?>
</div>
</div>
<?php
get_footer();