An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
492 B

3 years ago
3 years ago
  1. <?php
  2. /**
  3. * The template for displaying all single posts and attachments
  4. *
  5. * @package Portage
  6. */
  7. get_header();
  8. ?>
  9. <div id="content">
  10. <article>
  11. <!-- Start the loop -->
  12. <?php if (have_posts()) : ?>
  13. <?php while (have_posts()) : the_post(); ?>
  14. <?php get_template_part( 'formats/content', get_post_format() ); ?>
  15. <!-- End the loop -->
  16. <?php endwhile; ?>
  17. <?php endif; ?>
  18. </article>
  19. </div> <!-- end Content -->
  20. <?php get_sidebar(); ?>
  21. <div class="clear"></div>
  22. <?php get_footer(); ?>