<?php
/**
 * @package Delicacy
 */

get_header(); ?>

	<?php if ( have_posts() ) : ?>
		<div id="search-form">
			<?php get_search_form(); ?>
		</div>
		<h3 class="block-title"><?php printf( __( 'Search Results for: %s', 'delicacy' ), '<span>' . get_search_query() . '</span>' ); ?></h3>

		<div class="deco-line"></div>

		<div class="post-list">

		<?php while ( have_posts() ) : the_post(); ?>

			<?php get_template_part( 'content', 'search' ); ?>

		<?php endwhile; ?>

		<?php delicacy_content_nav( 'nav-below' ); ?>

		</div><!-- end #post-list -->

	<?php else : ?>

		<?php get_template_part( 'no-results', 'search' ); ?>

	<?php endif; ?>

		</div>

<?php get_sidebar(); ?>

</div><!-- end #content-wrapper -->

<?php get_footer(); ?>