Index: page.php
===================================================================
--- page.php	(revision 1613)
+++ page.php	(working copy)
@@ -1,13 +1,16 @@
 <?php get_header(); ?>
+<?php if (have_posts()) : ?>
+	<?php while (have_posts()) : the_post(); ?>
+	<div class="outer" id="mid-wrapper">
+		<div class="wrapper">
+			<div class="section">
+				<h3><?php the_title(); ?></h3>
+			</div>
+		</div>
+	</div>
 	<div class="wrapper">
 			<div class="section">
-<?php
-	while(have_posts()):
-		the_post();
-?>
 				<div class="main">
-				<h3><?php the_title(); ?></h3>
-
 					<?php the_content(); ?>
 				</div>
 
@@ -18,7 +21,6 @@
 				</div>
 			</div>
 		</div>
-<?php
-	endwhile;
-	get_footer();
-?>
+	<?php endwhile; ?>
+<?php endif; ?>
+<?php get_footer(); ?>
