This is what my page.php looks like:
<?php
get_header();
?>
<div class="frame">
<div class="bit-66">
<?php
while (have_posts()) : the_post(); ?>
<article>
<h3 class="post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_content(); ?></p>
</article>
<?php endwhile; ?>
</div><!--bit-66-->
<?php get_sidebar( 'primary' ); ?>
</div><!--frame-->
<?php
get_footer();
?>