page-fullwidth.php 346 B

123456789101112131415
  1. <?php get_header(); ?>
  2. <section id="content" class="site-content" role="main">
  3. <?php while ( have_posts() ) : the_post(); ?>
  4. <?php get_template_part( 'content', 'page' ); ?>
  5. <?php comments_template( '', true ); ?>
  6. <?php endwhile; // end of the loop. ?>
  7. </section><!-- end #content .site-content -->
  8. <?php get_footer(); ?>