page.php 318 B

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