layouts/theme/templates/page.php
<?php get_header(); ?>
<div class="content-wrap">
<div class="content content-area">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php endwhile; endif; ?>
</div>
<div class="site-sidebar widget-area">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>