guestbook.php 696 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Template Name: Guestbook
  4. *
  5. * Using this template allows comments on a page to be displayed prominently
  6. *
  7. * @package Affinity
  8. */
  9. get_header(); ?>
  10. <div id="primary" class="content-area">
  11. <main id="main" class="site-main" role="main">
  12. <?php while ( have_posts() ) : the_post(); ?>
  13. <?php get_template_part( 'components/page/content', 'page' ); ?>
  14. <?php
  15. // If comments are open or we have at least one comment, load up the comment template.
  16. if ( comments_open() || get_comments_number() ) :
  17. comments_template();
  18. endif;
  19. ?>
  20. <?php endwhile; // End of the loop. ?>
  21. </main><!-- #main -->
  22. </div><!-- #primary -->
  23. <?php get_footer(); ?>