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

get_header(); ?>

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

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

		<?php comments_template(); ?>

	<?php endwhile; endif; ?>

	</div><!-- end #content -->
		<?php get_sidebar(); ?>
</div><!-- end #content-wrapper -->

<?php get_footer(); ?>