File: /home/awaldron/_domains/waldroninteractive.com/wp-content/themes/whoiam/search.php
<?php
/**
* search.php
* @package WordPress
* @subpackage Who I Am
* @since Who I Am 1.9
*/
?>
<?php get_header(); ?>
<?php
get_template_part('menu_section'); ?>
<section id="blog" class="block-section">
<!-- ***************************************
Start of BreadCrumbs
*************************************** -->
<div class=" shape-bottom">
<div class="bg-secondary block-title">
<div class="container">
<h2 class="text-uppercase color-dark text-bold no-margin">
<?php printf( __( 'Search Results for: %s', 'volter' ), '<span>' . get_search_query() . '</span>' ); ?>
</h2>
</div>
</div>
</div>
<!-- ***************************************
End of BreadCrumbs
*************************************** -->
<div class="block-page" >
<div class="container-medium">
<div class="row">
<div class="col-md-9">
<ul class="list-unstyled list-blog">
<?php if (have_posts()) : while (have_posts()) : the_post();
get_template_part( 'post-format/content', get_post_format() );
endwhile;
get_template_part( 'post-format/pagination' );
else : ?>
<h2><?php _e('No Posts Found', 'whoiam') ?></h2>
<?php
endif;
wp_reset_query();
?>
</ul>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>