page.php 533 B

123456789101112131415161718192021222324
  1. <?php get_header(); ?>
  2. <div id="primary" class="content-area">
  3. <main id="main" class="site-main" role="main">
  4. <?php
  5. while ( have_posts() ) : the_post();
  6. get_template_part( 'template-parts/content', 'page' );
  7. // If comments are open or we have at least one comment, load up the comment template.
  8. if ( comments_open() || get_comments_number() ) :
  9. comments_template();
  10. endif;
  11. endwhile; // End of the loop.
  12. ?>
  13. </main><!-- #main -->
  14. </div><!-- #primary -->
  15. <?php
  16. get_sidebar();
  17. get_footer();