2015-10-22 17:24:52 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying all single posts and attachments
|
|
|
|
*
|
|
|
|
* @package Atticus Finch
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<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 -->
|
|
|
|
|
2016-02-14 17:48:37 +00:00
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
|
2015-10-22 17:24:52 +00:00
|
|
|
<div class="clear"></div>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|