2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The Template for displaying all single posts.
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
* @since _s 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" role="main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php get_template_part( 'content', 'single' ); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php _s_content_nav( 'nav-below' ); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php
|
|
|
|
// If comments are open or we have at least one comment, load up the comment template
|
|
|
|
if ( comments_open() || '0' != get_comments_number() )
|
|
|
|
comments_template();
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php endwhile; // end of the loop. ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|