(root)/single.php @ 7 - Rev 3
Blame |
Last modification |
View Log
| RSS feed
<?php
/*
* The Template for displaying all single posts.
*/
get_header(); ?>
<div id="content">
<?php
while (have_posts()) : the_post();
get_template_part('content', 'single');
comments_template('', true);
endwhile; // end of the loop.
?>
</div><!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>