| 123456789101112131415161718192021222324252627 | <?php get_header();?>  <div class="container">    <div class="row py-5">      <div class="col-lg-9 col-sm-12">        <?php if ( have_posts() ) : ?>  				<header class="page-header">  					<h1></strong><?php printf( __( 'Search for: %s' ), get_search_query() ); ?></h1>  				</header>        <?php while ( have_posts() ) : the_post();?>          <header class="entry-header">            <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'dw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>          </header>          <div class="entry-content">            <?php the_excerpt(); ?>          </div>				<?php endwhile;	else: ?>          <header class="entry-header">          <h2 class="entry-title">Nothing Found</h2>          </header>        <?php get_search_form();endif; ?>      </div>      <div class="col-lg-3 col-sm-12 d-none">        <?php get_sidebar();?>      </div>    </div>  </div><?php get_footer();?>
 |