atticus-finch/single.php
kjodle c9facfa199 Initial commit
Version 0.4; not ready for submission
2015-10-22 13:24:52 -04:00

33 lines
497 B
PHP

<?php
/**
* The template for displaying all single posts and attachments
*
* @package Atticus Finch
*/
get_header();
?>
<?php get_sidebar(); ?>
<div id="content">
<article>
<!-- Start the loop -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part( 'formats/content', get_post_format() ); ?>
<!-- End the loop -->
<?php endwhile; ?>
<?php endif; ?>
</article>
</div> <!-- end Content -->
<div class="clear"></div>
<?php get_footer(); ?>