Index: wp-content/themes/twentytwelve/content-none.php
===================================================================
--- wp-content/themes/twentytwelve/content-none.php	(revision 21615)
+++ wp-content/themes/twentytwelve/content-none.php	(working copy)
@@ -8,13 +8,13 @@
  */
 ?>
 
-		<article id="post-0" class="post no-results not-found">
-			<header class="entry-header">
-				<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
-			</header><!-- .entry-header -->
+<article id="post-0" class="post no-results not-found">
+	<header class="entry-header">
+		<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
+	</header><!-- .entry-header -->
 
-			<div class="entry-content">
-				<p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
-				<?php get_search_form(); ?>
-			</div><!-- .entry-content -->
-		</article><!-- #post-0 -->
+	<div class="entry-content">
+		<p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
+		<?php get_search_form(); ?>
+	</div><!-- .entry-content -->
+</article><!-- #post-0 -->
Index: wp-content/themes/twentytwelve/content.php
===================================================================
--- wp-content/themes/twentytwelve/content.php	(revision 21615)
+++ wp-content/themes/twentytwelve/content.php	(working copy)
@@ -8,57 +8,57 @@
  */
 ?>
 
-	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
-		<div class="featured-post">
-			<?php _e( 'Featured post', 'twentytwelve' ); ?>
-		</div>
-		<?php endif; ?>
-		<header class="entry-header">
-			<?php the_post_thumbnail(); ?>
-			<?php if ( is_single() ) : ?>
-			<h1 class="entry-title"><?php the_title(); ?></h1>
-			<?php else : ?>
-			<h1 class="entry-title">
-				<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
-			</h1>
-			<?php endif; // is_single() ?>
-			<?php if ( comments_open() ) : ?>
-				<div class="comments-link">
-					<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
-				</div><!-- .comments-link -->
-			<?php endif; // comments_open() ?>
-		</header><!-- .entry-header -->
-
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
-		<div class="entry-summary">
-			<?php the_excerpt(); ?>
-		</div><!-- .entry-summary -->
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
+	<div class="featured-post">
+		<?php _e( 'Featured post', 'twentytwelve' ); ?>
+	</div>
+	<?php endif; ?>
+	<header class="entry-header">
+		<?php the_post_thumbnail(); ?>
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
 		<?php else : ?>
-		<div class="entry-content">
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
-			<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
-		</div><!-- .entry-content -->
-		<?php endif; ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+		<?php if ( comments_open() ) : ?>
+			<div class="comments-link">
+				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
+			</div><!-- .comments-link -->
+		<?php endif; // comments_open() ?>
+	</header><!-- .entry-header -->
 
-		<footer class="entry-meta">
-			<?php twentytwelve_entry_meta(); ?>
-			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
-			<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
-				<div id="author-info">
-					<div id="author-avatar">
-						<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?>
-					</div><!-- #author-avatar -->
-					<div id="author-description">
-						<h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
-						<p><?php the_author_meta( 'description' ); ?></p>
-						<div id="author-link">
-							<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
-								<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentytwelve' ), get_the_author() ); ?>
-							</a>
-						</div><!-- #author-link	-->
-					</div><!-- #author-description -->
-				</div><!-- #author-info -->
-			<?php endif; ?>
-		</footer><!-- .entry-meta -->
-	</article><!-- #post -->
+	<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+	<div class="entry-summary">
+		<?php the_excerpt(); ?>
+	</div><!-- .entry-summary -->
+	<?php else : ?>
+	<div class="entry-content">
+		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
+		<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
+	</div><!-- .entry-content -->
+	<?php endif; ?>
+
+	<footer class="entry-meta">
+		<?php twentytwelve_entry_meta(); ?>
+		<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
+		<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
+			<div id="author-info">
+				<div id="author-avatar">
+					<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?>
+				</div><!-- #author-avatar -->
+				<div id="author-description">
+					<h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
+					<p><?php the_author_meta( 'description' ); ?></p>
+					<div id="author-link">
+						<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
+							<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentytwelve' ), get_the_author() ); ?>
+						</a>
+					</div><!-- #author-link	-->
+				</div><!-- #author-description -->
+			</div><!-- #author-info -->
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
Index: wp-content/themes/twentytwelve/404.php
===================================================================
--- wp-content/themes/twentytwelve/404.php	(revision 21615)
+++ wp-content/themes/twentytwelve/404.php	(working copy)
@@ -9,21 +9,21 @@
 
 get_header(); ?>
 
-	<div id="primary" class="site-content">
-		<div id="content" role="main">
+<div id="primary" class="site-content">
+	<div id="content" role="main">
 
-			<article id="post-0" class="post error404 no-results not-found">
-				<header class="entry-header">
-					<h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn&rsquo;t it?', 'twentytwelve' ); ?></h1>
-				</header>
+		<article id="post-0" class="post error404 no-results not-found">
+			<header class="entry-header">
+				<h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn&rsquo;t it?', 'twentytwelve' ); ?></h1>
+			</header>
 
-				<div class="entry-content">
-					<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentytwelve' ); ?></p>
-					<?php get_search_form(); ?>
-				</div><!-- .entry-content -->
-			</article><!-- #post-0 -->
+			<div class="entry-content">
+				<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentytwelve' ); ?></p>
+				<?php get_search_form(); ?>
+			</div><!-- .entry-content -->
+		</article><!-- #post-0 -->
 
-		</div><!-- #content -->
-	</div><!-- #primary .site-content -->
+	</div><!-- #content -->
+</div><!-- #primary .site-content -->
 
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/full-width-page.php
===================================================================
--- wp-content/themes/twentytwelve/full-width-page.php	(revision 21615)
+++ wp-content/themes/twentytwelve/full-width-page.php	(working copy)
@@ -9,15 +9,15 @@
 
 get_header(); ?>
 
-	<div id="primary" class="site-content">
-		<div id="content" role="main">
+<div id="primary" class="site-content">
+	<div id="content" role="main">
 
-			<?php while ( have_posts() ) : the_post(); ?>
-				<?php get_template_part( 'content', 'page' ); ?>
-				<?php comments_template( '', true ); ?>
-			<?php endwhile; // end of the loop. ?>
+		<?php while ( have_posts() ) : the_post(); ?>
+			<?php get_template_part( 'content', 'page' ); ?>
+			<?php comments_template( '', true ); ?>
+		<?php endwhile; // end of the loop. ?>
 
-		</div><!-- #content -->
-	</div><!-- #primary .site-content -->
+	</div><!-- #content -->
+</div><!-- #primary .site-content -->
 
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/single.php
===================================================================
--- wp-content/themes/twentytwelve/single.php	(revision 21615)
+++ wp-content/themes/twentytwelve/single.php	(working copy)
@@ -9,29 +9,29 @@
 
 get_header(); ?>
 
-	<div id="primary" class="site-content">
-		<div id="content" role="main">
+<div id="primary" class="site-content">
+	<div id="content" role="main">
 
-			<?php while ( have_posts() ) : the_post(); ?>
+		<?php while ( have_posts() ) : the_post(); ?>
 
-				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php get_template_part( 'content', get_post_format() ); ?>
 
-				<nav class="nav-single">
-					<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
-					<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span>', 'twentytwelve' ) . ' %title' ); ?></span>
-					<span class="nav-next"><?php next_post_link( '%link', '%title ' . __( '<span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?></span>
-				</nav><!-- .nav-single -->
+			<nav class="nav-single">
+				<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
+				<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span>', 'twentytwelve' ) . ' %title' ); ?></span>
+				<span class="nav-next"><?php next_post_link( '%link', '%title ' . __( '<span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?></span>
+			</nav><!-- .nav-single -->
 
-				<?php
-					// If comments are open or we have at least one comment, load up the comment template
-					if ( comments_open() || '0' != get_comments_number() )
-						comments_template( '', true );
-				?>
+			<?php
+				// If comments are open or we have at least one comment, load up the comment template
+				if ( comments_open() || '0' != get_comments_number() )
+					comments_template( '', true );
+			?>
 
-			<?php endwhile; // end of the loop. ?>
+		<?php endwhile; // end of the loop. ?>
 
-		</div><!-- #content -->
-	</div><!-- #primary .site-content -->
+	</div><!-- #content -->
+</div><!-- #primary .site-content -->
 
 <?php get_sidebar(); ?>
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/author.php
===================================================================
--- wp-content/themes/twentytwelve/author.php	(revision 21615)
+++ wp-content/themes/twentytwelve/author.php	(working copy)
@@ -9,62 +9,62 @@
 
 get_header(); ?>
 
-	<section id="primary" class="site-content">
-		<div id="content" role="main">
+<section id="primary" class="site-content">
+	<div id="content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+	<?php if ( have_posts() ) : ?>
 
-			<?php
-				/* Queue the first post, that way we know
-				 * what author we're dealing with (if that is the case).
-				 *
-				 * We reset this later so we can run the loop
-				 * properly with a call to rewind_posts().
-				 */
-				the_post();
-			?>
+		<?php
+			/* Queue the first post, that way we know
+			 * what author we're dealing with (if that is the case).
+			 *
+			 * We reset this later so we can run the loop
+			 * properly with a call to rewind_posts().
+			 */
+			the_post();
+		?>
 
-			<header class="archive-header">
-				<h1 class="archive-title"><?php printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
-			</header>
+		<header class="archive-header">
+			<h1 class="archive-title"><?php printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
+		</header>
 
-			<?php
-				/* Since we called the_post() above, we need to
-				 * rewind the loop back to the beginning that way
-				 * we can run the loop properly, in full.
-				 */
-				rewind_posts();
-			?>
+		<?php
+			/* Since we called the_post() above, we need to
+			 * rewind the loop back to the beginning that way
+			 * we can run the loop properly, in full.
+			 */
+			rewind_posts();
+		?>
 
-			<?php twentytwelve_content_nav( 'nav-above' ); ?>
+		<?php twentytwelve_content_nav( 'nav-above' ); ?>
 
-			<?php
-			// If a user has filled out their description, show a bio on their entries.
-			if ( get_the_author_meta( 'description' ) ) : ?>
-			<div id="author-info">
-				<div id="author-avatar">
-					<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 60 ) ); ?>
-				</div><!-- #author-avatar -->
-				<div id="author-description">
-					<h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
-					<p><?php the_author_meta( 'description' ); ?></p>
-				</div><!-- #author-description	-->
-			</div><!-- #author-info -->
-			<?php endif; ?>
+		<?php
+		// If a user has filled out their description, show a bio on their entries.
+		if ( get_the_author_meta( 'description' ) ) : ?>
+		<div id="author-info">
+			<div id="author-avatar">
+				<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 60 ) ); ?>
+			</div><!-- #author-avatar -->
+			<div id="author-description">
+				<h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
+				<p><?php the_author_meta( 'description' ); ?></p>
+			</div><!-- #author-description	-->
+		</div><!-- #author-info -->
+		<?php endif; ?>
 
-			<?php /* Start the Loop */ ?>
-			<?php while ( have_posts() ) : the_post(); ?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
+		<?php /* Start the Loop */ ?>
+		<?php while ( have_posts() ) : the_post(); ?>
+			<?php get_template_part( 'content', get_post_format() ); ?>
+		<?php endwhile; ?>
 
-			<?php twentytwelve_content_nav( 'nav-below' ); ?>
+		<?php twentytwelve_content_nav( 'nav-below' ); ?>
 
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+	<?php else : ?>
+		<?php get_template_part( 'content', 'none' ); ?>
+	<?php endif; ?>
 
-		</div><!-- #content -->
-	</section><!-- #primary .site-content -->
+	</div><!-- #content -->
+</section><!-- #primary .site-content -->
 
 <?php get_sidebar(); ?>
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/homepage.php
===================================================================
--- wp-content/themes/twentytwelve/homepage.php	(revision 21615)
+++ wp-content/themes/twentytwelve/homepage.php	(working copy)
@@ -9,22 +9,22 @@
 
 get_header(); ?>
 
-	<div id="primary" class="site-content">
-		<div id="content" role="main">
+<div id="primary" class="site-content">
+	<div id="content" role="main">
 
-			<?php while ( have_posts() ) : the_post(); ?>
-				<?php if ( has_post_thumbnail() ) { ?>
-					<div class="entry-page-image">
-						<?php the_post_thumbnail(); ?>
-					</div>
-				<?php } ?>
+		<?php while ( have_posts() ) : the_post(); ?>
+			<?php if ( has_post_thumbnail() ) : ?>
+				<div class="entry-page-image">
+					<?php the_post_thumbnail(); ?>
+				</div>
+			<?php endif; ?>
 
-				<?php get_template_part( 'content', 'page' ); ?>
+			<?php get_template_part( 'content', 'page' ); ?>
 
-			<?php endwhile; // end of the loop. ?>
+		<?php endwhile; // end of the loop. ?>
 
-		</div><!-- #content -->
-	</div><!-- #primary .site-content -->
+	</div><!-- #content -->
+</div><!-- #primary .site-content -->
 
 <?php get_sidebar( 'home' ); ?>
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/content-link.php
===================================================================
--- wp-content/themes/twentytwelve/content-link.php	(revision 21615)
+++ wp-content/themes/twentytwelve/content-link.php	(working copy)
@@ -8,14 +8,14 @@
  */
 ?>
 
-	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<header><?php _e( 'Link', 'twentytwelve' ); ?></header>
-		<div class="entry-content">
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
-		</div><!-- .entry-content -->
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header><?php _e( 'Link', 'twentytwelve' ); ?></header>
+	<div class="entry-content">
+		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
+	</div><!-- .entry-content -->
 
-		<footer class="entry-meta">
-			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<div class="edit-link">', '</div>' ); ?>
-			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_date(); ?></a>
-		</footer><!-- .entry-meta -->
-	</article><!-- #post -->
+	<footer class="entry-meta">
+		<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<div class="edit-link">', '</div>' ); ?>
+		<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_date(); ?></a>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
Index: wp-content/themes/twentytwelve/page.php
===================================================================
--- wp-content/themes/twentytwelve/page.php	(revision 21615)
+++ wp-content/themes/twentytwelve/page.php	(working copy)
@@ -14,16 +14,16 @@
 
 get_header(); ?>
 
-	<div id="primary" class="site-content">
-		<div id="content" role="main">
+<div id="primary" class="site-content">
+	<div id="content" role="main">
 
-			<?php while ( have_posts() ) : the_post(); ?>
-				<?php get_template_part( 'content', 'page' ); ?>
-				<?php comments_template( '', true ); ?>
-			<?php endwhile; // end of the loop. ?>
+		<?php while ( have_posts() ) : the_post(); ?>
+			<?php get_template_part( 'content', 'page' ); ?>
+			<?php comments_template( '', true ); ?>
+		<?php endwhile; // end of the loop. ?>
 
-		</div><!-- #content -->
-	</div><!-- #primary .site-content -->
+	</div><!-- #content -->
+</div><!-- #primary .site-content -->
 
 <?php get_sidebar(); ?>
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/index.php
===================================================================
--- wp-content/themes/twentytwelve/index.php	(revision 21615)
+++ wp-content/themes/twentytwelve/index.php	(working copy)
@@ -15,51 +15,51 @@
 
 get_header(); ?>
 
-	<div id="primary" class="site-content">
-		<div id="content" role="main">
-		<?php if ( have_posts() ) : ?>
+<div id="primary" class="site-content">
+	<div id="content" role="main">
+	<?php if ( have_posts() ) : ?>
 
-			<?php /* Start the Loop */ ?>
-			<?php while ( have_posts() ) : the_post(); ?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
+		<?php /* Start the Loop */ ?>
+		<?php while ( have_posts() ) : the_post(); ?>
+			<?php get_template_part( 'content', get_post_format() ); ?>
+		<?php endwhile; ?>
 
-			<?php twentytwelve_content_nav( 'nav-below' ); ?>
+		<?php twentytwelve_content_nav( 'nav-below' ); ?>
 
-		<?php else : ?>
+	<?php else : ?>
 
-			<article id="post-0" class="post no-results not-found">
+		<article id="post-0" class="post no-results not-found">
 
-			<?php if ( current_user_can( 'edit_posts' ) ) :
-				// Show a different message to a logged-in user who can add posts.
-			?>
-				<header class="entry-header">
-					<h1 class="entry-title"><?php _e( 'No posts to display', 'twentytwelve' ); ?></h1>
-				</header><!-- .entry-header -->
+		<?php if ( current_user_can( 'edit_posts' ) ) :
+			// Show a different message to a logged-in user who can add posts.
+		?>
+			<header class="entry-header">
+				<h1 class="entry-title"><?php _e( 'No posts to display', 'twentytwelve' ); ?></h1>
+			</header><!-- .entry-header -->
 
-				<div class="entry-content">
-					<p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p>
-				</div><!-- .entry-content -->
+			<div class="entry-content">
+				<p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p>
+			</div><!-- .entry-content -->
 
-			<?php else :
-				// Show the default message to everyone else.
-			?>
-				<header class="entry-header">
-					<h1 class="entry-title"><?php _e( 'Nothing found', 'twentytwelve' ); ?></h1>
-				</header><!-- .entry-header -->
+		<?php else :
+			// Show the default message to everyone else.
+		?>
+			<header class="entry-header">
+				<h1 class="entry-title"><?php _e( 'Nothing found', 'twentytwelve' ); ?></h1>
+			</header><!-- .entry-header -->
 
-				<div class="entry-content">
-					<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
-					<?php get_search_form(); ?>
-				</div><!-- .entry-content -->
-			<?php endif; // end current_user_can() check ?>
+			<div class="entry-content">
+				<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
+				<?php get_search_form(); ?>
+			</div><!-- .entry-content -->
+		<?php endif; // end current_user_can() check ?>
 
-			</article><!-- #post-0 -->
+		</article><!-- #post-0 -->
 
-		<?php endif; // end have_posts() check ?>
+	<?php endif; // end have_posts() check ?>
 
-		</div><!-- #content -->
-	</div><!-- #primary .site-content -->
+	</div><!-- #content -->
+</div><!-- #primary .site-content -->
 
 <?php get_sidebar(); ?>
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/content-image.php
===================================================================
--- wp-content/themes/twentytwelve/content-image.php	(revision 21615)
+++ wp-content/themes/twentytwelve/content-image.php	(working copy)
@@ -8,13 +8,13 @@
  */
 ?>
 
-	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<div class="entry-content">
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
-		</div><!-- .entry-content -->
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<div class="entry-content">
+		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
+	</div><!-- .entry-content -->
 
-		<footer class="entry-meta">
-			<h1><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
-			<h2><?php the_date(); ?></h2>
-		</footer><!-- .entry-meta -->
-	</article><!-- #post -->
+	<footer class="entry-meta">
+		<h1><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
+		<h2><?php the_date(); ?></h2>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
Index: wp-content/themes/twentytwelve/search.php
===================================================================
--- wp-content/themes/twentytwelve/search.php	(revision 21615)
+++ wp-content/themes/twentytwelve/search.php	(working copy)
@@ -9,41 +9,41 @@
 
 get_header(); ?>
 
-	<section id="primary" class="site-content">
-		<div id="content" role="main">
+<section id="primary" class="site-content">
+	<div id="content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+	<?php if ( have_posts() ) : ?>
 
-			<header class="page-header">
-				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
-			</header>
+		<header class="page-header">
+			<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
+		</header>
 
-			<?php twentytwelve_content_nav( 'nav-above' ); ?>
+		<?php twentytwelve_content_nav( 'nav-above' ); ?>
 
-			<?php /* Start the Loop */ ?>
-			<?php while ( have_posts() ) : the_post(); ?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
+		<?php /* Start the Loop */ ?>
+		<?php while ( have_posts() ) : the_post(); ?>
+			<?php get_template_part( 'content', get_post_format() ); ?>
+		<?php endwhile; ?>
 
-			<?php twentytwelve_content_nav( 'nav-below' ); ?>
+		<?php twentytwelve_content_nav( 'nav-below' ); ?>
 
-		<?php else : ?>
+	<?php else : ?>
 
-			<article id="post-0" class="post no-results not-found">
-				<header class="entry-header">
-					<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
-				</header><!-- .entry-header -->
+		<article id="post-0" class="post no-results not-found">
+			<header class="entry-header">
+				<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
+			</header><!-- .entry-header -->
 
-				<div class="entry-content">
-					<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentytwelve' ); ?></p>
-					<?php get_search_form(); ?>
-				</div><!-- .entry-content -->
-			</article><!-- #post-0 -->
+			<div class="entry-content">
+				<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentytwelve' ); ?></p>
+				<?php get_search_form(); ?>
+			</div><!-- .entry-content -->
+		</article><!-- #post-0 -->
 
-		<?php endif; ?>
+	<?php endif; ?>
 
-		</div><!-- #content -->
-	</section><!-- #primary .site-content -->
+	</div><!-- #content -->
+</section><!-- #primary .site-content -->
 
 <?php get_sidebar(); ?>
 <?php get_footer(); ?>
\ No newline at end of file
Index: wp-content/themes/twentytwelve/archive.php
===================================================================
--- wp-content/themes/twentytwelve/archive.php	(revision 21615)
+++ wp-content/themes/twentytwelve/archive.php	(working copy)
@@ -14,64 +14,64 @@
 
 get_header(); ?>
 
-	<section id="primary" class="site-content">
-		<div id="content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-			<header class="archive-header">
-				<h1 class="archive-title"><?php
-					if ( is_day() ) {
-						printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
-					} elseif ( is_month() ) {
-						printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
-					} elseif ( is_year() ) {
-						printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
-					} elseif ( is_tag() ) {
-						printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' );
-					} elseif ( is_category() ) {
-						printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
-					} else {
-						_e( 'Blog Archives', 'twentytwelve' );
-					}
-				?></h1>
+<section id="primary" class="site-content">
+	<div id="content" role="main">
 
-				<?php
-					// Show an optional tag description.
-					if ( is_tag() ) {
-						$tag_description = tag_description();
-						if ( $tag_description )
-							echo '<div class="archive-meta">' . $tag_description . '</div>';
-					}
-					// Show an optional category description.
-					if ( is_category() ) {
-						$category_description = category_description();
-						if ( $category_description )
-							echo '<div class="archive-meta">' . $category_description . '</div>';
-					}
-				?>
-			</header><!-- /. archive-header -->
+	<?php if ( have_posts() ) : ?>
+		<header class="archive-header">
+			<h1 class="archive-title"><?php
+				if ( is_day() ) {
+					printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
+				} elseif ( is_month() ) {
+					printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
+				} elseif ( is_year() ) {
+					printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
+				} elseif ( is_tag() ) {
+					printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' );
+				} elseif ( is_category() ) {
+					printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
+				} else {
+					_e( 'Blog Archives', 'twentytwelve' );
+				}
+			?></h1>
 
 			<?php
-			/* Start the Loop */
-			while ( have_posts() ) : the_post();
+				// Show an optional tag description.
+				if ( is_tag() ) {
+					$tag_description = tag_description();
+					if ( $tag_description )
+						echo '<div class="archive-meta">' . $tag_description . '</div>';
+				}
+				// Show an optional category description.
+				if ( is_category() ) {
+					$category_description = category_description();
+					if ( $category_description )
+						echo '<div class="archive-meta">' . $category_description . '</div>';
+				}
+			?>
+		</header><!-- /. archive-header -->
 
-				/* Include the post format-specific template for the content. If you want to
-				 * this in a child theme then include a file called called content-___.php
-				 * (where ___ is the post format) and that will be used instead.
-				 */
-				get_template_part( 'content', get_post_format() );
+		<?php
+		/* Start the Loop */
+		while ( have_posts() ) : the_post();
 
-			endwhile;
+			/* Include the post format-specific template for the content. If you want to
+			 * this in a child theme then include a file called called content-___.php
+			 * (where ___ is the post format) and that will be used instead.
+			 */
+			get_template_part( 'content', get_post_format() );
 
-			twentytwelve_content_nav( 'nav-below' );
-			?>
+		endwhile;
 
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		twentytwelve_content_nav( 'nav-below' );
+		?>
 
-		</div><!-- #content -->
-	</section><!-- #primary .site-content -->
+	<?php else : ?>
+		<?php get_template_part( 'content', 'none' ); ?>
+	<?php endif; ?>
+
+	</div><!-- #content -->
+</section><!-- #primary .site-content -->
 
 <?php get_sidebar(); ?>
 <?php get_footer(); ?>
\ No newline at end of file
