<?php 
/**
 * KENTOOZ SEARCH PAGE TEMPLATE
**/
get_header(); ?>
	<section class="span12">
	<div class="row">
		<div role="main" class="span8 pull-left">
		<div class="entry-head clearfix"><h1><?php printf( __( 'Search Results for: %s', ktz_theme_textdomain ), '<span>' . get_search_query() . '</span>' ); ?></h1></div>
		<section class="new-content">
		<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); 
		get_template_part( 'content', get_post_format() ); 
		endwhile; ?>
		<nav id="nav-index">
			<?php ktz_navigation(); ?>
		</nav>
		<?php else : ktz_post_notfound(); endif; ?>
		</section>
		</div>
	<?php get_sidebar(); ?>
	</div>
	</section>
<?php get_footer(); ?>
