2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2014-06-24 23:13:36 +00:00
|
|
|
* The template for displaying all single posts.
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<div id="primary" class="content-area">
|
2013-07-30 19:12:45 +00:00
|
|
|
<main id="main" class="site-main" 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
|
|
|
|
2014-12-19 01:34:18 +00:00
|
|
|
<?php the_post_navigation(); ?>
|
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
|
2014-10-15 00:57:47 +00:00
|
|
|
if ( comments_open() || get_comments_number() ) :
|
2013-03-05 00:41:38 +00:00
|
|
|
comments_template();
|
2013-11-24 16:21:43 +00:00
|
|
|
endif;
|
2013-03-05 00:41:38 +00:00
|
|
|
?>
|
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-07-30 19:12:45 +00:00
|
|
|
</main><!-- #main -->
|
2013-03-05 00:41:38 +00:00
|
|
|
</div><!-- #primary -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2014-10-15 00:57:47 +00:00
|
|
|
<?php get_footer(); ?>
|