• File: search.php
  • Full Path: /home/romi/public_html/wp-content-20260417071838/themes/fitness-insight/search.php
  • Date Modified: 09/02/2023 6:16 PM
  • File size: 902 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * The template for displaying search results pages
 * 
 * @subpackage Fitness Insight
 * @since 1.0
 */

get_header(); ?>

<main id="content">
	<div class="container">
		<header class="page-header">
			<?php if ( have_posts() ) : ?>
				<h1 class="entry-title"><span><?php /* translators: %s: search term */
	            	printf( esc_html__( 'Results For: %s','fitness-insight'), esc_html( get_search_query() ) ); ?>  </span>
	            </h1>
			<?php else : ?>
				<h2 class="page-title"><span><?php esc_html_e( 'Nothing Found', 'fitness-insight' ); ?></span></h2>
			<?php endif; ?>
		</header>
		<div class="content-area">
			<div id="main" class="site-main" role="main">
		      	<div class="row m-0">
		    		<?php
					get_template_part( 'template-parts/post/post-layout' );
					?>
				</div>	
			</div>
		</div>
	</div>
</main>

<?php get_footer();