File: //home/awaldron/public_html/archive/aime/wp-content/themes/upBootstrap3WP-master/search.php
<?php
/**
* The template for displaying Search Results pages.
*
* @author Matthias Thom | http://upplex.de
* @package upBootWP 1.1
*/
get_header(); ?>
<div class="container">
<div class="row">
<div class="col-md-8">
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'upbootwp' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</header><!-- .page-header -->
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'search' ); ?>
<?php endwhile; ?>
<?php upbootwp_content_nav( 'nav-below' ); ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'search' ); ?>
<?php endif; ?>
</main><!-- #main -->
</section><!-- #primary -->
</div><!-- .col-md-8 -->
<div class="col-md-4">
<?php get_sidebar(); ?>
</div><!-- .col-md-4 -->
</div><!-- .row -->
</div><!-- .container -->
<?php get_footer(); ?>