page.php 550 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template for displaying all single posts.
  4. *
  5. * @package Dyad
  6. */
  7. get_header(); ?>
  8. <main id="primary" class="content-area" role="main">
  9. <?php while ( have_posts() ) : the_post(); ?>
  10. <?php get_template_part( 'template-parts/content', 'page' ); ?>
  11. <?php endwhile; // End of the loop. ?>
  12. <?php
  13. // If comments are open or we have at least one comment, load up the comment template.
  14. if ( comments_open() || get_comments_number() ) :
  15. comments_template();
  16. endif;
  17. ?>
  18. </main><!-- #main -->
  19. <?php get_footer(); ?>