single.php 656 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @package Apostrophe 2
  4. *
  5. * The Template for displaying all single posts.
  6. */
  7. get_header(); ?>
  8. <section id="primary" class="content-area">
  9. <main id="main" class="site-main" role="main">
  10. <?php while ( have_posts() ) : the_post(); ?>
  11. <?php get_template_part( 'content', 'single' ); ?>
  12. <?php
  13. // If comments are open or we have at least one comment, load up the comment template
  14. if ( comments_open() || '0' !== get_comments_number() ) :
  15. comments_template();
  16. endif;
  17. ?>
  18. <?php endwhile; // end of the loop. ?>
  19. </main><!-- #main -->
  20. </section><!-- #primary -->
  21. <?php get_sidebar(); ?>
  22. <?php get_footer(); ?>