Index: page.php
===================================================================
--- page.php	(revision 1613)
+++ page.php	(working copy)
@@ -1,13 +1,14 @@
 <?php get_header(); ?>
+<?php if (have_posts()) : ?>
+	<?php while (have_posts()) : the_post(); ?>
+	<div id="headline">
+		<div class="wrapper">
+			<h2><?php the_title(); ?></h2>
+		</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 +19,6 @@
 				</div>
 			</div>
 		</div>
-<?php
-	endwhile;
-	get_footer();
-?>
+	<?php endwhile; ?>
+<?php endif; ?>
+<?php get_footer(); ?>
Index: single.php
===================================================================
--- single.php	(revision 1613)
+++ single.php	(working copy)
@@ -1,9 +1,7 @@
 <?php get_header(); ?>
-	<div class="outer" id="mid-wrapper">
+	<div id="headline">
 		<div class="wrapper">
-			<div class="section blog">
-				<h3><?php _e('Blog', 'rosetta');?></h3>
-			</div>
+			<h2><?php _e('Blog', 'rosetta');?></h2>
 		</div>
 	</div>
 	<?php if (have_posts()) : ?>
