wp386/single.php

32 lines
682 B
PHP
Raw Normal View History

2012-01-06 22:25:13 -05:00
<?php
/**
* The Template for displaying all single posts.
*
2013-08-10 05:41:27 -04:00
* @package wp386
2012-01-06 22:25:13 -05:00
*/
get_header(); ?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
2012-01-06 22:25:13 -05:00
<?php while ( have_posts() ) : the_post(); ?>
2012-01-06 22:25:13 -05:00
<?php get_template_part( 'content', 'single' ); ?>
2012-01-06 22:25:13 -05:00
2013-07-27 12:02:52 -04:00
<?php wp386_content_nav( 'nav-below' ); ?>
2012-01-06 22:25:13 -05: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-06 22:25:13 -05:00
<?php endwhile; // end of the loop. ?>
2012-01-06 22:25:13 -05:00
</div><!-- #content -->
</div><!-- #primary -->
2012-01-06 22:25:13 -05:00
<?php get_sidebar(); ?>
2013-07-27 12:02:52 -04:00
<?php get_footer(); ?>