1. <?php
  2. get_header();
  3.  
  4. while (have_posts()) : the_post();
  5. get_template_part('content', 'page');
  6. comments_template('', true);
  7. endwhile;
  8.  
  9. get_footer();