<?php
get_header();
?>
<div class="page-content">
<div class="container">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
endwhile; // End of the loop.
?>
</div>
</div><!-- #div -->
<?php
get_footer();