Current File : /home/pacjaorg/wpt.pacja.org/copwordpres/wp-content/themes/forest-nature/search.php |
<?php
/**
* The template for displaying search results pages
*
* @subpackage Forest Nature
* @since 1.0
*/
get_header(); ?>
<main id="content" class="mt-5">
<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','forest-nature'), esc_html( get_search_query() ) ); ?> </span>
</h1>
<?php else : ?>
<h2 class="page-title"><span><?php esc_html_e( 'Nothing Found', 'forest-nature' ); ?></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();