page-sidebar-right.php 626 B

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