File: h:/root/home/kytoffice-001/www/expresstinou/wp-content/themes/moza-blog/search.php
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Moza
*/
get_header(); ?>
<section class="search-area <?php if( ! is_active_sidebar('sidebar-1')): ?>block-content-css<?php endif; ?>" id="content">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="blog-title">
<h3 class="heading-title">
<?php printf( esc_html__( 'Search Results for: %s', 'moza' ), '<span>' . get_search_query() . '</span>' ); ?></h3>
</div>
</div>
<div class="<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>col-lg-8<?php else: ?> col-lg-12 <?php endif; ?>">
<?php if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
/**
* Run the loop for the search to output the results.
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.
*/
get_template_part( 'template-parts/content', 'search' );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div class="col-lg-4">
<?php get_sidebar(); ?>
</div>
<?php endif; ?>
</div>
</div>
</section>
<?php
get_footer();