full-width-page.php 684 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Template Name: Full Width, No Sidebar
  4. * The template for displaying a page without a sidebar.
  5. *
  6. * @package Libre 2
  7. */
  8. get_header(); ?>
  9. <div id="primary" class="content-area">
  10. <main id="main" class="site-main" role="main">
  11. <?php while ( have_posts() ) : the_post(); ?>
  12. <?php get_template_part( 'template-parts/content', 'page' ); ?>
  13. <?php
  14. // If comments are open or we have at least one comment, load up the comment template.
  15. if ( comments_open() || get_comments_number() ) :
  16. comments_template();
  17. endif;
  18. ?>
  19. <?php endwhile; // End of the loop. ?>
  20. </main><!-- #main -->
  21. </div><!-- #primary -->
  22. <?php get_footer(); ?>