Step 7: Regular Pages.
Next copy the entire contents of index.php into the page.php file and change <div class="post"> to <div class="post page">
You will also want to remove <div class="info"> and it's contents as you do not want the post meta data showing on each individual page. The following code should be removed.
<div class="info">
<ul>
<li><?php the_time('F dS, Y') ?></li>
<li><?php the_category(', '); ?></li>
<li><em><?php the_author(); ?></em></li>
</ul>
</div>

