page.php 401 B

12345678910111213141516171819
  1. <?php get_header(); ?>
  2. <div class="container">
  3. <div class="page-container">
  4. <div class="row">
  5. <div class="twelvecol">
  6. <?php while ( have_posts() ) : the_post(); ?>
  7. <?php get_template_part( 'content', 'page' ); ?>
  8. <?php comments_template( '', true ); ?>
  9. <?php endwhile; // end of the loop. ?>
  10. </div>
  11. </div>
  12. </div>
  13. </div>
  14. <?php get_footer(); ?>