HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/refonte2023/wordpress/wp-content/themes/gimont/template-parts/search.php
<?php get_header(); ?>

<div class="row_site">
	<div class="container_site">
		<div id="main-content" class="main">

			<header class="page-header">
				<h1 class="page-title">
					<?php esc_html_e('Search Results for: ','gimont'); printf( '<span>%s</span>', get_search_query() ); ?>
				</h1>
			</header>

			<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
			    <?php get_template_part( 'template-parts/blog/default' ); ?>
			<?php endwhile; ?>

				<div class="pagination-wrapper">
			    	<?php 
			    		 $args = array(
			                'type'      => 'list',
			                'next_text' => '<i class="ovaicon-next"></i><span class="visuallyhidden">Next</span>',
			                'prev_text' => '<i class="ovaicon-back"></i><span class="visuallyhidden">Previous</span>',
			            );

			            the_posts_pagination($args);
			    	 ?>
				</div>
				
			<?php else : ?>
		        <p>
		        	<?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'gimont' ); ?>
		        </p>
				<?php get_search_form(); ?>
			<?php endif; ?>

			
		</div>
		<?php get_sidebar(); ?>
	</div>
</div>

<?php get_footer(); ?>