itworksb5/page.php
2021-01-27 16:19:31 -05:00

30 lines
556 B
PHP

<?php
/**
* The template for displaying all pages
*/
get_header(); ?>
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
?>
<div class="container">
<?php comments_template(); ?>
</div>
<?php
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
<?php
get_footer();