<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,11 +1,21 @@
+&lt;!-- 404.php start --&gt;
+
 &lt;?php get_header(); ?&gt;
 
-	&lt;div id=&quot;content&quot; class=&quot;narrowcolumn&quot;&gt;
+		&lt;div id=&quot;main_wrapper&quot;&gt;
+			
+			&lt;div id=&quot;content&quot; class=&quot;narrowcolumn grid_10&quot;&gt;
+
+				&lt;h2 class=&quot;center&quot;&gt;Error 404 - Not Found&lt;/h2&gt;
 
-		&lt;h2 class=&quot;center&quot;&gt;Error 404 - Not Found&lt;/h2&gt;
+			&lt;/div&gt;
 
-	&lt;/div&gt;
+			&lt;?php get_sidebar(); ?&gt;
+			
+			&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+			
+		&lt;/div&gt;
 
-&lt;?php get_sidebar(); ?&gt;
+&lt;?php get_footer(); ?&gt;
 
-&lt;?php get_footer(); ?&gt;
\ No newline at end of file
+&lt;!-- 404.php end --&gt;
\ No newline at end of file</diff>
      <filename>404.php</filename>
    </modified>
    <modified>
      <diff>@@ -17,6 +17,9 @@ Code Changes
 7) Post content broken out into seperate template to reduce repetition
 8) Navigation content broken out into seperate template to reduce repetition
 9) About template broken out to make it easier for beginners to edit.
+10) XHTML 1.0 Strict doctype
+11) Moved About Post data into definition lists
+12) Comments put on each template so you can tell what to edit by looking at the source.
 
 
 ***************
@@ -25,4 +28,7 @@ Design Changes
 
 1) Header broken into layered transparent images so you can change the color with a simple hex
 2) Page frame broken into layered transparent images so you can change the color of the background with a simple hex
-3) Added RSS Icons to footer.
\ No newline at end of file
+3) Added RSS Icons to footer.
+4) Added Calendar and Tag Cloud added to sidebar and styled.
+5) Page width expanded to 1024px which is the standard in page size currently.
+6) Line height on paragraph increased to 1.5
\ No newline at end of file</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,45 +1,57 @@
+&lt;!-- archive.php start --&gt;
+
 &lt;?php get_header(); ?&gt;
 
-	&lt;div id=&quot;content&quot; class=&quot;narrowcolumn&quot;&gt;
-
-		&lt;?php if (have_posts()) : ?&gt;
-			&lt;?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?&gt;
-			&lt;?php /* If this is a category archive */ if (is_category()) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for the &amp;#8216;&lt;?php single_cat_title(); ?&gt;&amp;#8217; Category&lt;/h2&gt;
-			&lt;?php /* If this is a tag archive */ } elseif( is_tag() ) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Posts Tagged &amp;#8216;&lt;?php single_tag_title(); ?&gt;&amp;#8217;&lt;/h2&gt;
-			&lt;?php /* If this is a daily archive */ } elseif (is_day()) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for &lt;?php the_time('F jS, Y'); ?&gt;&lt;/h2&gt;
-			&lt;?php /* If this is a monthly archive */ } elseif (is_month()) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for &lt;?php the_time('F, Y'); ?&gt;&lt;/h2&gt;
-			&lt;?php /* If this is a yearly archive */ } elseif (is_year()) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for &lt;?php the_time('Y'); ?&gt;&lt;/h2&gt;
-			&lt;?php /* If this is an author archive */ } elseif (is_author()) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Author Archive&lt;/h2&gt;
-			&lt;?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) &amp;&amp; !empty($_GET['paged'])) { ?&gt;
-			&lt;h2 class=&quot;pagetitle&quot;&gt;Blog Archives&lt;/h2&gt;
- 	  &lt;?php } ?&gt;
-
-
-		&lt;?php include (TEMPLATEPATH . &quot;/navigation.php&quot;); ?&gt;
-
-		&lt;?php while (have_posts()) : the_post(); ?&gt;
+		&lt;div id=&quot;main_wrapper&quot;&gt;
+			
+			&lt;div id=&quot;content&quot; class=&quot;narrowcolumn grid_10&quot;&gt;
+
+				&lt;?php if (have_posts()) : ?&gt;
+					
+					&lt;?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?&gt;
+					&lt;?php /* If this is a category archive */ if (is_category()) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for the &amp;#8216;&lt;?php single_cat_title(); ?&gt;&amp;#8217; Category&lt;/h2&gt;
+					&lt;?php /* If this is a tag archive */ } elseif( is_tag() ) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Posts Tagged &amp;#8216;&lt;?php single_tag_title(); ?&gt;&amp;#8217;&lt;/h2&gt;
+					&lt;?php /* If this is a daily archive */ } elseif (is_day()) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for &lt;?php the_time('F jS, Y'); ?&gt;&lt;/h2&gt;
+					&lt;?php /* If this is a monthly archive */ } elseif (is_month()) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for &lt;?php the_time('F, Y'); ?&gt;&lt;/h2&gt;
+					&lt;?php /* If this is a yearly archive */ } elseif (is_year()) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Archive for &lt;?php the_time('Y'); ?&gt;&lt;/h2&gt;
+					&lt;?php /* If this is an author archive */ } elseif (is_author()) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Author Archive&lt;/h2&gt;
+					&lt;?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) &amp;&amp; !empty($_GET['paged'])) { ?&gt;
+						&lt;h2 class=&quot;pagetitle&quot;&gt;Blog Archives&lt;/h2&gt;
+		 	 		&lt;?php } ?&gt;
+	
+	
+				&lt;?php include (TEMPLATEPATH . &quot;/navigation.php&quot;); ?&gt;
 		
-			&lt;?php include (TEMPLATEPATH . &quot;/post.php&quot;); ?&gt;
-
-		&lt;?php endwhile; ?&gt;
-
-			&lt;?php include (TEMPLATEPATH . &quot;/navigation.php&quot;); ?&gt;
+				&lt;?php while (have_posts()) : the_post(); ?&gt;
 				
-		&lt;?php else : ?&gt;
-
-			&lt;h2 class=&quot;center&quot;&gt;Not Found&lt;/h2&gt;
-			&lt;?php include (TEMPLATEPATH . '/searchform.php'); ?&gt;
+					&lt;?php include (TEMPLATEPATH . &quot;/post.php&quot;); ?&gt;
+		
+				&lt;?php endwhile; ?&gt;
+		
+					&lt;?php include (TEMPLATEPATH . &quot;/navigation.php&quot;); ?&gt;
+						
+				&lt;?php else : ?&gt;
+		
+					&lt;h2 class=&quot;center&quot;&gt;Not Found&lt;/h2&gt;
+					&lt;?php include (TEMPLATEPATH . '/searchform.php'); ?&gt;
+	
+				&lt;?php endif; ?&gt;
 
-	&lt;?php endif; ?&gt;
 
-	&lt;/div&gt;
+			&lt;/div&gt;
 
-&lt;?php get_sidebar(); ?&gt;
+			&lt;?php get_sidebar(); ?&gt;
+			
+			&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+			
+		&lt;/div&gt;
 
 &lt;?php get_footer(); ?&gt;
+
+&lt;!-- archive.php end --&gt;</diff>
      <filename>archive.php</filename>
    </modified>
    <modified>
      <diff>@@ -4,15 +4,14 @@
 			&lt;div id=&quot;footer&quot;&gt;
 			&lt;!-- If you'd like to support WordPress, having the &quot;powered by&quot; link somewhere on your blog is the best way; it's our only promotion or advertising. --&gt;
 				&lt;p&gt;
-					&lt;?php bloginfo('name'); ?&gt; is proudly powered by
-					&lt;a href=&quot;http://wordpress.org/&quot;&gt;WordPress&lt;/a&gt;
+					&lt;?php bloginfo('name'); ?&gt; is proudly powered by &lt;a href=&quot;http://wordpress.org/&quot;&gt;WordPress&lt;/a&gt;
+				&lt;/p&gt;
 					&lt;div id=&quot;footer_rss_links&quot;&gt;
-						&lt;a href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/feed.png&quot; alt=&quot;RSS Feed&quot;&gt; Entries&lt;/a&gt;
+						&lt;a href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/feed.png&quot; alt=&quot;RSS Feed for Entries&quot; /&gt; Entries&lt;/a&gt;
 						and
-						&lt;a href=&quot;&lt;?php bloginfo('comments_rss2_url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/feed.png&quot; alt=&quot;RSS Feed&quot;&gt; Comments&lt;/a&gt;.
+						&lt;a href=&quot;&lt;?php bloginfo('comments_rss2_url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/feed.png&quot; alt=&quot;RSS Feed for Comments&quot; /&gt; Comments&lt;/a&gt;.
 					&lt;/div&gt;
 					&lt;!-- &lt;?php echo get_num_queries(); ?&gt; queries. &lt;?php timer_stop(1); ?&gt; seconds. --&gt;
-				&lt;/p&gt;
 			&lt;/div&gt;
 		&lt;/div&gt;
 </diff>
      <filename>footer.php</filename>
    </modified>
    <modified>
      <diff>@@ -39,8 +39,10 @@
 
 			&lt;div id=&quot;header&quot;&gt;
 				&lt;div id=&quot;headerimg&quot;&gt;
-					&lt;h1&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;
-					&lt;div class=&quot;description&quot;&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/div&gt;
+					&lt;div id=&quot;header_window&quot;&gt;
+						&lt;h1&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;
+						&lt;div class=&quot;description&quot;&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/div&gt;
+					&lt;/div&gt;
 				&lt;/div&gt;
 			&lt;/div&gt;
 		</diff>
      <filename>header.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,5 @@
+&lt;!-- index.php start --&gt;
+
 &lt;?php get_header(); ?&gt;
 
 		&lt;div id=&quot;main_wrapper&quot;&gt;
@@ -33,3 +35,5 @@
 		&lt;/div&gt;
 
 &lt;?php get_footer(); ?&gt;
+
+&lt;!-- index.php end --&gt;</diff>
      <filename>index.php</filename>
    </modified>
    <modified>
      <diff>@@ -184,7 +184,7 @@ strike {
 body {
 	font-size: 62.5%; /* Resets 1em to 10px */
 	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
-	background: #ebecee;
+	background: #eee;
 	color: #333;
 	text-align: center;
 	margin: 0 0 20px 0;
@@ -218,22 +218,25 @@ body {
 		}
 		
 			#headerimg 	{
-				background: #73a0c5 url('images/header_window.png') no-repeat bottom center;
+				background: #73a0c5 url('images/feed.png') bottom center;
 				margin: 0px 14px;
 				height: 194px;
 			}
-		
-				#headerimg .description {
+				#header .description {
 					font-size: 1.2em;
 					text-align: center;
 					text-decoration: none;
 					color: white;
 				}
+				#header_window 	{
+					background: url('images/header_window.png') no-repeat bottom center;
+					height: 194px;
+				}
 				
 /* CONTENT */
 
 		#main_wrapper {
-			background: #ffffff url('images/page_background.png') repeat-y top center;
+			background: url('images/page_background.png') repeat-y top center;
 			margin: 0;
 		}
 			#content {
@@ -250,11 +253,8 @@ body {
 				
 				.widecolumn {
 					padding: 10px 0 20px 0;
-					margin: 5px 20px 0 20px;
+					margin: 0px 20px 0 20px;
 				}
-					.widecolumn .post {
-						margin: 0;
-					}
 					.widecolumn .postmetadata {
 						margin: 30px 0;
 					}
@@ -284,6 +284,12 @@ body {
 					.post hr {
 						display: block;
 					}
+					.post p img {
+						padding: 10px;
+					}
+					.post p {
+						line-height: 1.5em;
+					}
 /* ENTRY */			
 					.entry {}
 						.entry p a:visited {
@@ -317,13 +323,22 @@ body {
 						.entry form { /* This is mainly for password protected posts, makes them look better. */
 							text-align:center;
 						}
-						.post p img {
-							padding: 10px;
-						}
 						.postmetadata {
 							color: #777;
-							clear:both;
+							clear: both;
+							font-size: .95em;
 						}
+							.postmetadata dt{
+								float: left;
+								font-weight: bold;
+								margin-bottom: 5px;
+								padding-right: 5px;
+							}
+							.postmetadata dd{
+								margin-bottom: 5px;
+								float: left;
+								padding-right: 10px;
+							}
 							.postmetadata ul, .postmetadata li {
 								display: inline;
 								list-style-type: none;
@@ -471,7 +486,7 @@ body {
 			padding: 0;
 			margin: 0 auto;
 			clear: both;
-			background: #eee url('images/footer_background.png') no-repeat bottom center;
+			background: url('images/footer_background.png') no-repeat bottom center;
 		}
 
 			#footer p {</diff>
      <filename>main.css</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,33 @@
-&lt;?php get_header(); ?&gt;
+&lt;!-- page.php start --&gt;
 
-	&lt;div id=&quot;content&quot; class=&quot;narrowcolumn&quot;&gt;
+&lt;?php get_header(); ?&gt;
 
-		&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
-		&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
-		&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
-			&lt;div class=&quot;entry&quot;&gt;
-				&lt;?php the_content('&lt;p class=&quot;serif&quot;&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;'); ?&gt;
+		&lt;div id=&quot;main_wrapper&quot;&gt;
+			
+			&lt;div id=&quot;content&quot; class=&quot;narrowcolumn grid_10&quot;&gt;
 
-				&lt;?php wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;
+				&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
+					&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
+						&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
+							&lt;div class=&quot;entry&quot;&gt;
+								&lt;?php the_content('&lt;p class=&quot;serif&quot;&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;'); ?&gt;
+				
+								&lt;?php wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;
+				
+							&lt;/div&gt;
+					&lt;/div&gt;
+				&lt;?php endwhile; endif; ?&gt;
+		
+				&lt;?php edit_post_link('Edit this entry.', '&lt;p&gt;', '&lt;/p&gt;'); ?&gt;
 
 			&lt;/div&gt;
+
+			&lt;?php get_sidebar(); ?&gt;
+			
+			&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+			
 		&lt;/div&gt;
-		&lt;?php endwhile; endif; ?&gt;
-	&lt;?php edit_post_link('Edit this entry.', '&lt;p&gt;', '&lt;/p&gt;'); ?&gt;
-	&lt;/div&gt;
 
-&lt;?php get_sidebar(); ?&gt;
+&lt;?php get_footer(); ?&gt;
 
-&lt;?php get_footer(); ?&gt;
\ No newline at end of file
+&lt;!-- page.php end --&gt;</diff>
      <filename>page.php</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,16 @@
 		&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
 	&lt;/div&gt;
 
-	&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
+		
+	&lt;dl class=&quot;postmetadata&quot;&gt;
+		&lt;?php the_tags('&lt;dt&gt;Tags:&lt;/dt&gt;&lt;dd&gt;', ', ', '&lt;/dd&gt;'); ?&gt;
+		&lt;dt&gt;Category:&lt;/dt&gt;
+		&lt;dd&gt;&lt;?php the_category(', ') ?&gt;&lt;/dd&gt;
+		&lt;dt&gt;Comments:&lt;/dt&gt;
+		&lt;dd&gt;&lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/dd&gt;
+	&lt;/dl&gt;
+	
+	&lt;?php edit_post_link('Edit', '&lt;div id=&quot;admin_edit_link&quot;&gt;', '&lt;/div&gt;'); ?&gt;
 	
 &lt;/div&gt;
 &lt;!-- post.php end --&gt;
\ No newline at end of file</diff>
      <filename>post.php</filename>
    </modified>
    <modified>
      <diff>@@ -55,7 +55,7 @@
 			
 			&lt;li&gt;&lt;h2&gt;Tag Cloud&lt;/h2&gt;
 				&lt;ul&gt;
-					&lt;?php wp_tag_cloud(''); ?&gt;
+					&lt;li&gt;&lt;?php wp_tag_cloud(''); ?&gt;&lt;/li&gt;
 				&lt;/ul&gt;
 			&lt;/li&gt;			
 </diff>
      <filename>sidebar.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,66 +1,74 @@
-&lt;?php get_header(); ?&gt;
-
-	&lt;div id=&quot;content&quot; class=&quot;widecolumn&quot;&gt;
-
-	&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
-
-		&lt;div class=&quot;navigation&quot;&gt;
-			&lt;div class=&quot;alignleft&quot;&gt;&lt;?php previous_post_link('&amp;laquo; %link') ?&gt;&lt;/div&gt;
-			&lt;div class=&quot;alignright&quot;&gt;&lt;?php next_post_link('%link &amp;raquo;') ?&gt;&lt;/div&gt;
-		&lt;/div&gt;
-
-		&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
-			&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
-
-			&lt;div class=&quot;entry&quot;&gt;
-				&lt;?php the_content('&lt;p class=&quot;serif&quot;&gt;Read the rest of this entry &amp;raquo;&lt;/p&gt;'); ?&gt;
-
-				&lt;?php wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;
-				&lt;?php the_tags( '&lt;p&gt;Tags: ', ', ', '&lt;/p&gt;'); ?&gt;
-
-				&lt;p class=&quot;postmetadata alt&quot;&gt;
-					&lt;small&gt;
-						This entry was posted
-						&lt;?php /* This is commented, because it requires a little adjusting sometimes.
-							You'll need to download this plugin, and follow the instructions:
-							http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
-							/* $entry_datetime = abs(strtotime($post-&gt;post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?&gt;
-						on &lt;?php the_time('l, F jS, Y') ?&gt; at &lt;?php the_time() ?&gt;
-						and is filed under &lt;?php the_category(', ') ?&gt;.
-						You can follow any responses to this entry through the &lt;?php post_comments_feed_link('RSS 2.0'); ?&gt; feed.
-
-						&lt;?php if (('open' == $post-&gt; comment_status) &amp;&amp; ('open' == $post-&gt;ping_status)) {
-							// Both Comments and Pings are open ?&gt;
-							You can &lt;a href=&quot;#respond&quot;&gt;leave a response&lt;/a&gt;, or &lt;a href=&quot;&lt;?php trackback_url(); ?&gt;&quot; rel=&quot;trackback&quot;&gt;trackback&lt;/a&gt; from your own site.
+&lt;!-- single.php start --&gt;
 
-						&lt;?php } elseif (!('open' == $post-&gt; comment_status) &amp;&amp; ('open' == $post-&gt;ping_status)) {
-							// Only Pings are Open ?&gt;
-							Responses are currently closed, but you can &lt;a href=&quot;&lt;?php trackback_url(); ?&gt; &quot; rel=&quot;trackback&quot;&gt;trackback&lt;/a&gt; from your own site.
-
-						&lt;?php } elseif (('open' == $post-&gt; comment_status) &amp;&amp; !('open' == $post-&gt;ping_status)) {
-							// Comments are open, Pings are not ?&gt;
-							You can skip to the end and leave a response. Pinging is currently not allowed.
-
-						&lt;?php } elseif (!('open' == $post-&gt; comment_status) &amp;&amp; !('open' == $post-&gt;ping_status)) {
-							// Neither Comments, nor Pings are open ?&gt;
-							Both comments and pings are currently closed.
-
-						&lt;?php } edit_post_link('Edit this entry','','.'); ?&gt;
+&lt;?php get_header(); ?&gt;
 
-					&lt;/small&gt;
-				&lt;/p&gt;
+		&lt;div id=&quot;main_wrapper&quot;&gt;
+			
+			&lt;div id=&quot;content&quot; class=&quot;widecolumn&quot;&gt;
+
+
+				&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
+			
+					&lt;?php include (TEMPLATEPATH . &quot;/navigation.php&quot;); ?&gt;
+			
+					&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
+						&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
+			
+						&lt;div class=&quot;entry&quot;&gt;
+							&lt;?php the_content('&lt;p class=&quot;serif&quot;&gt;Read the rest of this entry &amp;raquo;&lt;/p&gt;'); ?&gt;
+			
+							&lt;?php wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;
+							&lt;?php the_tags( '&lt;p&gt;Tags: ', ', ', '&lt;/p&gt;'); ?&gt;
+			
+							&lt;p class=&quot;postmetadata alt&quot;&gt;
+								&lt;small&gt;
+									This entry was posted
+									&lt;?php /* This is commented, because it requires a little adjusting sometimes.
+										You'll need to download this plugin, and follow the instructions:
+										http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
+										/* $entry_datetime = abs(strtotime($post-&gt;post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?&gt;
+									on &lt;?php the_time('l, F jS, Y') ?&gt; at &lt;?php the_time() ?&gt;
+									and is filed under &lt;?php the_category(', ') ?&gt;.
+									You can follow any responses to this entry through the &lt;?php post_comments_feed_link('RSS 2.0'); ?&gt; feed.
+			
+									&lt;?php if (('open' == $post-&gt; comment_status) &amp;&amp; ('open' == $post-&gt;ping_status)) {
+										// Both Comments and Pings are open ?&gt;
+										You can &lt;a href=&quot;#respond&quot;&gt;leave a response&lt;/a&gt;, or &lt;a href=&quot;&lt;?php trackback_url(); ?&gt;&quot; rel=&quot;trackback&quot;&gt;trackback&lt;/a&gt; from your own site.
+			
+									&lt;?php } elseif (!('open' == $post-&gt; comment_status) &amp;&amp; ('open' == $post-&gt;ping_status)) {
+										// Only Pings are Open ?&gt;
+										Responses are currently closed, but you can &lt;a href=&quot;&lt;?php trackback_url(); ?&gt; &quot; rel=&quot;trackback&quot;&gt;trackback&lt;/a&gt; from your own site.
+			
+									&lt;?php } elseif (('open' == $post-&gt; comment_status) &amp;&amp; !('open' == $post-&gt;ping_status)) {
+										// Comments are open, Pings are not ?&gt;
+										You can skip to the end and leave a response. Pinging is currently not allowed.
+			
+									&lt;?php } elseif (!('open' == $post-&gt; comment_status) &amp;&amp; !('open' == $post-&gt;ping_status)) {
+										// Neither Comments, nor Pings are open ?&gt;
+										Both comments and pings are currently closed.
+			
+									&lt;?php } edit_post_link('Edit this entry','','.'); ?&gt;
+			
+								&lt;/small&gt;
+							&lt;/p&gt;
+			
+						&lt;/div&gt;
+					&lt;/div&gt;
+			
+					&lt;?php comments_template(); ?&gt;
+			
+				&lt;?php endwhile; else: ?&gt;
+
+					&lt;p&gt;Sorry, no posts matched your criteria.&lt;/p&gt;
+
+				&lt;?php endif; ?&gt;
 
 			&lt;/div&gt;
+			
+			&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
+			
 		&lt;/div&gt;
 
-	&lt;?php comments_template(); ?&gt;
-
-	&lt;?php endwhile; else: ?&gt;
-
-		&lt;p&gt;Sorry, no posts matched your criteria.&lt;/p&gt;
-
-&lt;?php endif; ?&gt;
-
-	&lt;/div&gt;
-
 &lt;?php get_footer(); ?&gt;
+
+&lt;!-- single.php end --&gt;</diff>
      <filename>single.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b4b90d751448c5ff9a458121dcbe7b7a5f940f53</id>
    </parent>
  </parents>
  <author>
    <name>Lynn Wallenstein</name>
    <email>lwallenstein@gmail.com</email>
  </author>
  <url>http://github.com/lwallenstein/designers-default/commit/1de4c90765533c9c9703eeb0e5783bdac945b512</url>
  <id>1de4c90765533c9c9703eeb0e5783bdac945b512</id>
  <committed-date>2008-11-23T00:10:44-08:00</committed-date>
  <authored-date>2008-11-23T00:10:44-08:00</authored-date>
  <message>cleaned up and commented all page templates and added header as a window so that an image could be used as the background</message>
  <tree>7066d9e5acc6b78af73f7e11633daf1e79f8da0d</tree>
  <committer>
    <name>Lynn Wallenstein</name>
    <email>lwallenstein@gmail.com</email>
  </committer>
</commit>
