diff --git a/wp-content/themes/twentyeleven/archive.php b/wp-content/themes/twentyeleven/archive.php
index 13390e2..81a4bad 100644
--- a/wp-content/themes/twentyeleven/archive.php
+++ b/wp-content/themes/twentyeleven/archive.php
@@ -17,19 +17,19 @@
 		<section id="primary">
 			<div id="content" role="main">
 
-			<?php if ( have_posts() ) : ?>
+			<?php if ( have_posts() ) { ?>
 
 				<header class="page-header">
 					<h1 class="page-title">
-						<?php if ( is_day() ) : ?>
+						<?php if ( is_day() ) { ?>
 							<?php printf( __( 'Daily Archives: %s', 'twentyeleven' ), '<span>' . get_the_date() . '</span>' ); ?>
-						<?php elseif ( is_month() ) : ?>
+						<?php } elseif ( is_month() ) { ?>
 							<?php printf( __( 'Monthly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyeleven' ) ) . '</span>' ); ?>
-						<?php elseif ( is_year() ) : ?>
+						<?php } elseif ( is_year() ) { ?>
 							<?php printf( __( 'Yearly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentyeleven' ) ) . '</span>' ); ?>
-						<?php else : ?>
+						<?php } else { ?>
 							<?php _e( 'Blog Archives', 'twentyeleven' ); ?>
-						<?php endif; ?>
+						<?php } ?>
 					</h1>
 				</header>
 
@@ -50,7 +50,7 @@
 
 				<?php twentyeleven_content_nav( 'nav-below' ); ?>
 
-			<?php else : ?>
+			<?php } else { ?>
 
 				<article id="post-0" class="post no-results not-found">
 					<header class="entry-header">
@@ -63,7 +63,7 @@
 					</div><!-- .entry-content -->
 				</article><!-- #post-0 -->
 
-			<?php endif; ?>
+			<?php } ?>
 
 			</div><!-- #content -->
 		</section><!-- #primary -->
diff --git a/wp-content/themes/twentyeleven/author.php b/wp-content/themes/twentyeleven/author.php
index 472cb13..dd023e6 100644
--- a/wp-content/themes/twentyeleven/author.php
+++ b/wp-content/themes/twentyeleven/author.php
@@ -12,7 +12,7 @@
 		<section id="primary">
 			<div id="content" role="main">
 
-			<?php if ( have_posts() ) : ?>
+			<?php if ( have_posts() ) { ?>
 
 				<?php
 					/* Queue the first post, that way we know
@@ -40,7 +40,7 @@
 
 				<?php
 				// If a user has filled out their description, show a bio on their entries.
-				if ( get_the_author_meta( 'description' ) ) : ?>
+				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( 'twentyeleven_author_bio_avatar_size', 60 ) ); ?>
@@ -50,7 +50,7 @@
 						<?php the_author_meta( 'description' ); ?>
 					</div><!-- #author-description	-->
 				</div><!-- #author-info -->
-				<?php endif; ?>
+				<?php } ?>
 
 				<?php /* Start the Loop */ ?>
 				<?php while ( have_posts() ) : the_post(); ?>
@@ -67,7 +67,7 @@
 
 				<?php twentyeleven_content_nav( 'nav-below' ); ?>
 
-			<?php else : ?>
+			<?php } else { ?>
 
 				<article id="post-0" class="post no-results not-found">
 					<header class="entry-header">
@@ -80,7 +80,7 @@
 					</div><!-- .entry-content -->
 				</article><!-- #post-0 -->
 
-			<?php endif; ?>
+			<?php } ?>
 
 			</div><!-- #content -->
 		</section><!-- #primary -->
diff --git a/wp-content/themes/twentyeleven/category.php b/wp-content/themes/twentyeleven/category.php
index 539cbbd..1d8b20a 100644
--- a/wp-content/themes/twentyeleven/category.php
+++ b/wp-content/themes/twentyeleven/category.php
@@ -12,7 +12,7 @@
 		<section id="primary">
 			<div id="content" role="main">
 
-			<?php if ( have_posts() ) : ?>
+			<?php if ( have_posts() ) { ?>
 
 				<header class="page-header">
 					<h1 class="page-title"><?php
@@ -43,7 +43,7 @@
 
 				<?php twentyeleven_content_nav( 'nav-below' ); ?>
 
-			<?php else : ?>
+			<?php } else { ?>
 
 				<article id="post-0" class="post no-results not-found">
 					<header class="entry-header">
@@ -56,7 +56,7 @@
 					</div><!-- .entry-content -->
 				</article><!-- #post-0 -->
 
-			<?php endif; ?>
+			<?php } ?>
 
 			</div><!-- #content -->
 		</section><!-- #primary -->
diff --git a/wp-content/themes/twentyeleven/comments.php b/wp-content/themes/twentyeleven/comments.php
index 6b77fee..4ff3e01 100644
--- a/wp-content/themes/twentyeleven/comments.php
+++ b/wp-content/themes/twentyeleven/comments.php
@@ -13,7 +13,7 @@
  */
 ?>
 	<div id="comments">
-	<?php if ( post_password_required() ) : ?>
+	<?php if ( post_password_required() ) { ?>
 		<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyeleven' ); ?></p>
 	</div><!-- #comments -->
 	<?php
@@ -22,12 +22,12 @@
 			 * to fully load the template.
 			 */
 			return;
-		endif;
+		}
 	?>
 
 	<?php // You can start editing here -- including this comment! ?>
 
-	<?php if ( have_comments() ) : ?>
+	<?php if ( have_comments() ) { ?>
 		<h2 id="comments-title">
 			<?php
 				printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentyeleven' ),
@@ -35,13 +35,13 @@
 			?>
 		</h2>
 
-		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
+		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // are there comments to navigate through ?>
 		<nav id="comment-nav-above">
 			<h1 class="assistive-text"><?php _e( 'Comment navigation', 'twentyeleven' ); ?></h1>
 			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentyeleven' ) ); ?></div>
 			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentyeleven' ) ); ?></div>
 		</nav>
-		<?php endif; // check for comment navigation ?>
+		<?php } // check for comment navigation ?>
 
 		<ol class="commentlist">
 			<?php
@@ -55,23 +55,23 @@
 			?>
 		</ol>
 
-		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
+		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // are there comments to navigate through ?>
 		<nav id="comment-nav-below">
 			<h1 class="assistive-text"><?php _e( 'Comment navigation', 'twentyeleven' ); ?></h1>
 			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentyeleven' ) ); ?></div>
 			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentyeleven' ) ); ?></div>
 		</nav>
-		<?php endif; // check for comment navigation ?>
+		<?php } // check for comment navigation ?>
 
 		<?php
 		/* If there are no comments and comments are closed, let's leave a little note, shall we?
 		 * But we only want the note on posts and pages that had comments in the first place.
 		 */
-		if ( ! comments_open() && get_comments_number() ) : ?>
+		if ( ! comments_open() && get_comments_number() ) { ?>
 		<p class="nocomments"><?php _e( 'Comments are closed.' , 'twentyeleven' ); ?></p>
-		<?php endif; ?>
+		<?php } ?>
 
-	<?php endif; // have_comments() ?>
+	<?php } // have_comments() ?>
 
 	<?php comment_form(); ?>
 
diff --git a/wp-content/themes/twentyeleven/content-aside.php b/wp-content/themes/twentyeleven/content-aside.php
index 66f0603..d157850 100644
--- a/wp-content/themes/twentyeleven/content-aside.php
+++ b/wp-content/themes/twentyeleven/content-aside.php
@@ -17,30 +17,30 @@
 				<h3 class="entry-format"><?php _e( 'Aside', 'twentyeleven' ); ?></h3>
 			</hgroup>
 
-			<?php if ( comments_open() && ! post_password_required() ) : ?>
+			<?php if ( comments_open() && ! post_password_required() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
 			</div>
-			<?php endif; ?>
+			<?php } ?>
 		</header><!-- .entry-header -->
 
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+		<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 		<div class="entry-content">
 			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
 			<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
 		</div><!-- .entry-content -->
-		<?php endif; ?>
+		<?php } ?>
 
 		<footer class="entry-meta">
 			<?php twentyeleven_posted_on(); ?>
-			<?php if ( comments_open() ) : ?>
+			<?php if ( comments_open() ) { ?>
 			<span class="sep"> | </span>
 			<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-			<?php endif; ?>
+			<?php } ?>
 			<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentyeleven/content-gallery.php b/wp-content/themes/twentyeleven/content-gallery.php
index fb7b105..7c4b5d2 100644
--- a/wp-content/themes/twentyeleven/content-gallery.php
+++ b/wp-content/themes/twentyeleven/content-gallery.php
@@ -22,17 +22,17 @@
 		</div><!-- .entry-meta -->
 	</header><!-- .entry-header -->
 
-	<?php if ( is_search() ) : // Only display Excerpts for search pages ?>
+	<?php if ( is_search() ) { // Only display Excerpts for search pages ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 		<div class="entry-content">
-			<?php if ( post_password_required() ) : ?>
+			<?php if ( post_password_required() ) { ?>
 				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
-			<?php else :
+				<?php } else {
 				$images = twentyeleven_get_gallery_images();
-				if ( $images ) :
+				if ( $images ) {
 					$total_images = count( $images );
 					$image = array_shift( $images );
 			?>
@@ -44,44 +44,44 @@
 						'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
 						number_format_i18n( $total_images )
 					); ?></em></p>
-			<?php endif; // end twentyeleven_get_gallery_images() check ?>
+			<?php } // end twentyeleven_get_gallery_images() check ?>
 			<?php the_excerpt(); ?>
-		<?php endif; ?>
+		<?php } ?>
 		<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
 	</div><!-- .entry-content -->
-	<?php endif; ?>
+	<?php } ?>
 
 	<footer class="entry-meta">
 		<?php $show_sep = false; ?>
 		<?php
 			/* translators: used between list items, there is a space after the comma */
 			$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
-			if ( $categories_list ):
+			if ( $categories_list ) {
 		?>
 		<span class="cat-links">
 			<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
 			$show_sep = true; ?>
 		</span>
-		<?php endif; // End if categories ?>
+		<?php } // End if categories ?>
 		<?php
 			/* translators: used between list items, there is a space after the comma */
 			$tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
-			if ( $tags_list ):
-			if ( $show_sep ) : ?>
+			if ( $tags_list ) {
+			if ( $show_sep ) { ?>
 		<span class="sep"> | </span>
-			<?php endif; // End if $show_sep ?>
+			<?php } // End if $show_sep ?>
 		<span class="tag-links">
 			<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
 			$show_sep = true; ?>
 		</span>
-		<?php endif; // End if $tags_list ?>
+		<?php } // End if $tags_list ?>
 
-		<?php if ( comments_open() ) : ?>
-		<?php if ( $show_sep ) : ?>
+		<?php if ( comments_open() ) { ?>
+		<?php if ( $show_sep ) { ?>
 		<span class="sep"> | </span>
-		<?php endif; // End if $show_sep ?>
+		<?php } // End if $show_sep ?>
 		<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-		<?php endif; // End if comments_open() ?>
+		<?php } // End if comments_open() ?>
 
 		<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 	</footer><!-- .entry-meta -->
diff --git a/wp-content/themes/twentyeleven/content-image.php b/wp-content/themes/twentyeleven/content-image.php
index 4d2cbaf..8bc5dd8 100644
--- a/wp-content/themes/twentyeleven/content-image.php
+++ b/wp-content/themes/twentyeleven/content-image.php
@@ -16,11 +16,11 @@
 				<h3 class="entry-format"><?php _e( 'Image', 'twentyeleven' ); ?></h3>
 			</hgroup>
 
-			<?php if ( comments_open() && ! post_password_required() ) : ?>
+			<?php if ( comments_open() && ! post_password_required() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( "Reply", 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
 			</div>
-			<?php endif; ?>
+			<?php } ?>
 		</header><!-- .entry-header -->
 
 		<div class="entry-content">
@@ -45,24 +45,24 @@
 				<?php
 					/* translators: used between list items, there is a space after the comma */
 					$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
-					if ( $categories_list ):
+					if ( $categories_list ) {
 				?>
 				<span class="cat-links">
 					<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); ?>
 				</span>
-				<?php endif; // End if categories ?>
+				<?php } // End if categories ?>
 				<?php
 					/* translators: used between list items, there is a space after the comma */
 					$tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
-					if ( $tags_list ): ?>
+					if ( $tags_list ) { ?>
 				<span class="tag-links">
 					<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
 				</span>
-				<?php endif; // End if $tags_list ?>
+				<?php } // End if $tags_list ?>
 
-				<?php if ( comments_open() ) : ?>
+				<?php if ( comments_open() ) { ?>
 				<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-				<?php endif; // End if comments_open() ?>
+				<?php } // End if comments_open() ?>
 			</div><!-- .entry-meta -->
 
 			<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
diff --git a/wp-content/themes/twentyeleven/content-link.php b/wp-content/themes/twentyeleven/content-link.php
index f03099e..619b14b 100644
--- a/wp-content/themes/twentyeleven/content-link.php
+++ b/wp-content/themes/twentyeleven/content-link.php
@@ -17,30 +17,30 @@
 				<h3 class="entry-format"><?php _e( 'Link', 'twentyeleven' ); ?></h3>
 			</hgroup>
 
-			<?php if ( comments_open() && ! post_password_required() ) : ?>
+			<?php if ( comments_open() && ! post_password_required() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
 			</div>
-			<?php endif; ?>
+			<?php } ?>
 		</header><!-- .entry-header -->
 
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+		<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 		<div class="entry-content">
 			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
 			<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
 		</div><!-- .entry-content -->
-		<?php endif; ?>
+		<?php } ?>
 
 		<footer class="entry-meta">
 			<?php twentyeleven_posted_on(); ?>
-			<?php if ( comments_open() ) : ?>
+			<?php if ( comments_open() ) { ?>
 			<span class="sep"> | </span>
 			<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-			<?php endif; ?>
+			<?php } ?>
 			<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentyeleven/content-quote.php b/wp-content/themes/twentyeleven/content-quote.php
index c74e006..169402a 100644
--- a/wp-content/themes/twentyeleven/content-quote.php
+++ b/wp-content/themes/twentyeleven/content-quote.php
@@ -19,55 +19,55 @@
 				<?php twentyeleven_posted_on(); ?>
 			</div><!-- .entry-meta -->
 
-			<?php if ( comments_open() && ! post_password_required() ) : ?>
+			<?php if ( comments_open() && ! post_password_required() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
 			</div>
-			<?php endif; ?>
+			<?php } ?>
 		</header><!-- .entry-header -->
 
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+		<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 		<div class="entry-content">
 			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
 			<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
 		</div><!-- .entry-content -->
-		<?php endif; ?>
+		<?php } ?>
 
 		<footer class="entry-meta">
 			<?php $show_sep = false; ?>
 			<?php
 				/* translators: used between list items, there is a space after the comma */
 				$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
-				if ( $categories_list ):
+				if ( $categories_list ) {
 			?>
 			<span class="cat-links">
 				<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
 				$show_sep = true; ?>
 			</span>
-			<?php endif; // End if categories ?>
+			<?php } // End if categories ?>
 			<?php
 				/* translators: used between list items, there is a space after the comma */
 				$tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
-				if ( $tags_list ):
-				if ( $show_sep ) : ?>
+				if ( $tags_list ) {
+				if ( $show_sep ) { ?>
 			<span class="sep"> | </span>
-				<?php endif; // End if $show_sep ?>
+				<?php } // End if $show_sep ?>
 			<span class="tag-links">
 				<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
 				$show_sep = true; ?>
 			</span>
-			<?php endif; // End if $tags_list ?>
+			<?php } // End if $tags_list ?>
 
-			<?php if ( comments_open() ) : ?>
-			<?php if ( $show_sep ) : ?>
+			<?php if ( comments_open() ) { ?>
+			<?php if ( $show_sep ) { ?>
 			<span class="sep"> | </span>
-			<?php endif; // End if $show_sep ?>
+			<?php } // End if $show_sep ?>
 			<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-			<?php endif; // End if comments_open() ?>
+			<?php } // End if comments_open() ?>
 
 			<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
diff --git a/wp-content/themes/twentyeleven/content-single.php b/wp-content/themes/twentyeleven/content-single.php
index 8c28371..f780483 100644
--- a/wp-content/themes/twentyeleven/content-single.php
+++ b/wp-content/themes/twentyeleven/content-single.php
@@ -12,11 +12,11 @@
 	<header class="entry-header">
 		<h1 class="entry-title"><?php the_title(); ?></h1>
 
-		<?php if ( 'post' == get_post_type() ) : ?>
+		<?php if ( 'post' == get_post_type() ) { ?>
 		<div class="entry-meta">
 			<?php twentyeleven_posted_on(); ?>
 		</div><!-- .entry-meta -->
-		<?php endif; ?>
+		<?php } ?>
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
@@ -51,7 +51,7 @@
 		?>
 		<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 
-		<?php if ( get_the_author_meta( 'description' ) && ( ! function_exists( 'is_multi_author' ) || is_multi_author() ) ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?>
+		<?php if ( get_the_author_meta( 'description' ) && ( ! function_exists( 'is_multi_author' ) || 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( 'twentyeleven_author_bio_avatar_size', 68 ) ); ?>
@@ -66,6 +66,6 @@
 				</div><!-- #author-link	-->
 			</div><!-- #author-description -->
 		</div><!-- #author-info -->
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentyeleven/content-status.php b/wp-content/themes/twentyeleven/content-status.php
index 144d122..4226417 100644
--- a/wp-content/themes/twentyeleven/content-status.php
+++ b/wp-content/themes/twentyeleven/content-status.php
@@ -16,32 +16,32 @@
 				<h3 class="entry-format"><?php _e( 'Status', 'twentyeleven' ); ?></h3>
 			</hgroup>
 
-			<?php if ( comments_open() && ! post_password_required() ) : ?>
+			<?php if ( comments_open() && ! post_password_required() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
 			</div>
-			<?php endif; ?>
+			<?php } ?>
 		</header><!-- .entry-header -->
 
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+		<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 		<div class="entry-content">
 			<div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentyeleven_status_avatar', '65' ) ); ?></div>
 
 			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
 			<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
 		</div><!-- .entry-content -->
-		<?php endif; ?>
+		<?php } ?>
 
 		<footer class="entry-meta">
 			<?php twentyeleven_posted_on(); ?>
-			<?php if ( comments_open() ) : ?>
+			<?php if ( comments_open() ) { ?>
 			<span class="sep"> | </span>
 			<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-			<?php endif; ?>
+			<?php } ?>
 			<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentyeleven/content.php b/wp-content/themes/twentyeleven/content.php
index cc8532c..9981f87 100644
--- a/wp-content/themes/twentyeleven/content.php
+++ b/wp-content/themes/twentyeleven/content.php
@@ -10,74 +10,74 @@
 
 	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 		<header class="entry-header">
-			<?php if ( is_sticky() ) : ?>
+			<?php if ( is_sticky() ) { ?>
 				<hgroup>
 					<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
 					<h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3>
 				</hgroup>
-			<?php else : ?>
+			<?php } else { ?>
 			<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
-			<?php endif; ?>
+			<?php } ?>
 
-			<?php if ( 'post' == get_post_type() ) : ?>
+			<?php if ( 'post' == get_post_type() ) { ?>
 			<div class="entry-meta">
 				<?php twentyeleven_posted_on(); ?>
 			</div><!-- .entry-meta -->
-			<?php endif; ?>
+			<?php } ?>
 
-			<?php if ( comments_open() && ! post_password_required() ) : ?>
+			<?php if ( comments_open() && ! post_password_required() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
 			</div>
-			<?php endif; ?>
+			<?php } ?>
 		</header><!-- .entry-header -->
 
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+		<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 		<div class="entry-content">
 			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
 			<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
 		</div><!-- .entry-content -->
-		<?php endif; ?>
+		<?php } ?>
 
 		<footer class="entry-meta">
 			<?php $show_sep = false; ?>
-			<?php if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) : // Hide category text when not supported ?>
+			<?php if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { // Hide category text when not supported ?>
 			<?php
 				/* translators: used between list items, there is a space after the comma */
 				$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
-				if ( $categories_list ):
+				if ( $categories_list ) {
 			?>
 			<span class="cat-links">
 				<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
 				$show_sep = true; ?>
 			</span>
-			<?php endif; // End if categories ?>
-			<?php endif; // End if is_object_in_taxonomy( get_post_type(), 'category' ) ?>
-			<?php if ( is_object_in_taxonomy( get_post_type(), 'post_tag' ) ) : // Hide tag text when not supported ?>
+			<?php } // End if categories ?>
+			<?php } // End if is_object_in_taxonomy( get_post_type(), 'category' ) ?>
+			<?php if ( is_object_in_taxonomy( get_post_type(), 'post_tag' ) ) { // Hide tag text when not supported ?>
 			<?php
 				/* translators: used between list items, there is a space after the comma */
 				$tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
-				if ( $tags_list ):
-				if ( $show_sep ) : ?>
+				if ( $tags_list ) {
+				if ( $show_sep ) { ?>
 			<span class="sep"> | </span>
-				<?php endif; // End if $show_sep ?>
+				<?php } // End if $show_sep ?>
 			<span class="tag-links">
 				<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
 				$show_sep = true; ?>
 			</span>
-			<?php endif; // End if $tags_list ?>
-			<?php endif; // End if is_object_in_taxonomy( get_post_type(), 'post_tag' ) ?>
+			<?php } // End if $tags_list ?>
+			<?php } // End if is_object_in_taxonomy( get_post_type(), 'post_tag' ) ?>
 
-			<?php if ( comments_open() ) : ?>
-			<?php if ( $show_sep ) : ?>
+			<?php if ( comments_open() ) { ?>
+			<?php if ( $show_sep ) { ?>
 			<span class="sep"> | </span>
-			<?php endif; // End if $show_sep ?>
+			<?php } // End if $show_sep ?>
 			<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
-			<?php endif; // End if comments_open() ?>
+			<?php } // End if comments_open() ?>
 
 			<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
diff --git a/wp-content/themes/twentyeleven/functions.php b/wp-content/themes/twentyeleven/functions.php
index 296d887..3a0159a 100644
--- a/wp-content/themes/twentyeleven/functions.php
+++ b/wp-content/themes/twentyeleven/functions.php
@@ -49,7 +49,7 @@
  */
 add_action( 'after_setup_theme', 'twentyeleven_setup' );
 
-if ( ! function_exists( 'twentyeleven_setup' ) ):
+if ( ! function_exists( 'twentyeleven_setup' ) ) {
 /**
  * Sets up theme defaults and registers support for various WordPress features.
  *
@@ -207,9 +207,9 @@ function twentyeleven_setup() {
 		)
 	) );
 }
-endif; // twentyeleven_setup
+} // twentyeleven_setup
 
-if ( ! function_exists( 'twentyeleven_header_style' ) ) :
+if ( ! function_exists( 'twentyeleven_header_style' ) ) {
 /**
  * Styles the header image and text displayed on the blog
  *
@@ -227,7 +227,7 @@ function twentyeleven_header_style() {
 	<style type="text/css" id="twentyeleven-header-css">
 	<?php
 		// Has the text been hidden?
-		if ( 'blank' == $text_color ) :
+		if ( 'blank' == $text_color ) {
 	?>
 		#site-title,
 		#site-description {
@@ -237,19 +237,19 @@ function twentyeleven_header_style() {
 		}
 	<?php
 		// If the user has set a custom color for the text use that
-		else :
+		} else {
 	?>
 		#site-title a,
 		#site-description {
 			color: #<?php echo $text_color; ?> !important;
 		}
-	<?php endif; ?>
+	<?php } ?>
 	</style>
 	<?php
 }
-endif; // twentyeleven_header_style
+} // twentyeleven_header_style
 
-if ( ! function_exists( 'twentyeleven_admin_header_style' ) ) :
+if ( ! function_exists( 'twentyeleven_admin_header_style' ) ) {
 /**
  * Styles the header image displayed on the Appearance > Header admin panel.
  *
@@ -282,13 +282,13 @@ function twentyeleven_admin_header_style() {
 	}
 	<?php
 		// If the user has set a custom color for the text use that
-		if ( get_header_textcolor() != HEADER_TEXTCOLOR ) :
+		if ( get_header_textcolor() != HEADER_TEXTCOLOR ) {
 	?>
 		#site-title a,
 		#site-description {
 			color: #<?php echo get_header_textcolor(); ?>;
 		}
-	<?php endif; ?>
+	<?php } ?>
 	#headimg img {
 		max-width: 1000px;
 		height: auto;
@@ -297,9 +297,9 @@ function twentyeleven_admin_header_style() {
 	</style>
 <?php
 }
-endif; // twentyeleven_admin_header_style
+} // twentyeleven_admin_header_style
 
-if ( ! function_exists( 'twentyeleven_admin_header_image' ) ) :
+if ( ! function_exists( 'twentyeleven_admin_header_image' ) ) {
 /**
  * Custom header image markup displayed on the Appearance > Header admin panel.
  *
@@ -321,10 +321,10 @@ function twentyeleven_admin_header_image() { ?>
 		<div id="desc" class="displaying-header-text"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
 		<?php if ( $image ) : ?>
 			<img src="<?php echo esc_url( $image ); ?>" alt="" />
-		<?php endif; ?>
+		<?php } ?>
 	</div>
 <?php }
-endif; // twentyeleven_admin_header_image
+} // twentyeleven_admin_header_image
 
 /**
  * Sets the post excerpt length to 40 words.
@@ -337,14 +337,14 @@ function twentyeleven_excerpt_length( $length ) {
 }
 add_filter( 'excerpt_length', 'twentyeleven_excerpt_length' );
 
-if ( ! function_exists( 'twentyeleven_continue_reading_link' ) ) :
+if ( ! function_exists( 'twentyeleven_continue_reading_link' ) ) {
 /**
  * Returns a "Continue Reading" link for excerpts
  */
 function twentyeleven_continue_reading_link() {
 	return ' <a href="'. esc_url( get_permalink() ) . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) . '</a>';
 }
-endif; // twentyeleven_continue_reading_link
+} // twentyeleven_continue_reading_link
 
 /**
  * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and twentyeleven_continue_reading_link().
@@ -441,22 +441,22 @@ function twentyeleven_widgets_init() {
 }
 add_action( 'widgets_init', 'twentyeleven_widgets_init' );
 
-if ( ! function_exists( 'twentyeleven_content_nav' ) ) :
+if ( ! function_exists( 'twentyeleven_content_nav' ) ) {
 /**
  * Display navigation to next/previous pages when applicable
  */
 function twentyeleven_content_nav( $html_id ) {
 	global $wp_query;
 
-	if ( $wp_query->max_num_pages > 1 ) : ?>
+	if ( $wp_query->max_num_pages > 1 ) { ?>
 		<nav id="<?php echo esc_attr( $html_id ); ?>">
 			<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
 			<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyeleven' ) ); ?></div>
 			<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?></div>
 		</nav><!-- #nav-above -->
-	<?php endif;
+	<?php }
 }
-endif; // twentyeleven_content_nav
+} // twentyeleven_content_nav
 
 /**
  * Return the first link from the post content. If none found, the
@@ -519,7 +519,7 @@ function twentyeleven_footer_sidebar_class() {
 		echo 'class="' . $class . '"';
 }
 
-if ( ! function_exists( 'twentyeleven_comment' ) ) :
+if ( ! function_exists( 'twentyeleven_comment' ) ) {
 /**
  * Template for comments and pingbacks.
  *
@@ -568,10 +568,10 @@ function twentyeleven_comment( $comment, $args, $depth ) {
 					<?php edit_comment_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 				</div><!-- .comment-author .vcard -->
 
-				<?php if ( $comment->comment_approved == '0' ) : ?>
+				<?php if ( $comment->comment_approved == '0' ) { ?>
 					<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyeleven' ); ?></em>
 					<br />
-				<?php endif; ?>
+				<?php } ?>
 
 			</footer>
 
@@ -586,9 +586,9 @@ function twentyeleven_comment( $comment, $args, $depth ) {
 			break;
 	endswitch;
 }
-endif; // ends check for twentyeleven_comment()
+} // ends check for twentyeleven_comment()
 
-if ( ! function_exists( 'twentyeleven_posted_on' ) ) :
+if ( ! function_exists( 'twentyeleven_posted_on' ) ) {
 /**
  * Prints HTML with meta information for the current post-date/time and author.
  * Create your own twentyeleven_posted_on to override in a child theme
@@ -606,7 +606,7 @@ function twentyeleven_posted_on() {
 		get_the_author()
 	);
 }
-endif;
+}
 
 /**
  * Adds two classes to the array of body classes.
diff --git a/wp-content/themes/twentyeleven/header.php b/wp-content/themes/twentyeleven/header.php
index 59b6d3b..9df35ef 100644
--- a/wp-content/themes/twentyeleven/header.php
+++ b/wp-content/themes/twentyeleven/header.php
@@ -78,7 +78,7 @@
 			<?php
 				// Check to see if the header image has been removed
 				$header_image = get_header_image();
-				if ( $header_image ) :
+				if ( $header_image ) {
 					// Compatibility with versions of WordPress prior to 3.4.
 					if ( function_exists( 'get_custom_header' ) ) {
 						// We need to figure out what the minimum width should be for our featured image.
@@ -94,10 +94,10 @@
 					// Check if this is a post or page, if it has a thumbnail, and if it's a big one
 					if ( is_singular() && has_post_thumbnail( $post->ID ) &&
 							( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
-							$image[1] >= $header_image_width ) :
+							$image[1] >= $header_image_width ) {
 						// Houston, we have a new header image!
 						echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
-					else :
+					} else {
 						// Compatibility with versions of WordPress prior to 3.4.
 						if ( function_exists( 'get_custom_header' ) ) {
 							$header_image_width  = get_custom_header()->width;
@@ -108,22 +108,22 @@
 						}
 						?>
 					<img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
-				<?php endif; // end check for featured image or standard header ?>
+				<?php } // end check for featured image or standard header ?>
 			</a>
-			<?php endif; // end check for removed header image ?>
+			<?php } // end check for removed header image ?>
 
 			<?php
 				// Has the text been hidden?
-				if ( 'blank' == get_header_textcolor() ) :
+				if ( 'blank' == get_header_textcolor() ) {
 			?>
-				<div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>">
+				<div class="only-search<?php if ( $header_image ) { ?> with-image<?php } ?>">
 				<?php get_search_form(); ?>
 				</div>
 			<?php
-				else :
+				} else {
 			?>
 				<?php get_search_form(); ?>
-			<?php endif; ?>
+			<?php } ?>
 
 			<nav id="access" role="navigation">
 				<h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
diff --git a/wp-content/themes/twentyeleven/inc/widgets.php b/wp-content/themes/twentyeleven/inc/widgets.php
index 2571274..98dfea3 100644
--- a/wp-content/themes/twentyeleven/inc/widgets.php
+++ b/wp-content/themes/twentyeleven/inc/widgets.php
@@ -74,7 +74,7 @@ function widget( $args, $instance ) {
 		);
 		$ephemera = new WP_Query( $ephemera_args );
 
-		if ( $ephemera->have_posts() ) :
+		if ( $ephemera->have_posts() ) {
 			echo $before_widget;
 			echo $before_title;
 			echo $title; // Can set this with a widget option, or omit altogether
@@ -83,7 +83,7 @@ function widget( $args, $instance ) {
 			<ol>
 			<?php while ( $ephemera->have_posts() ) : $ephemera->the_post(); ?>
 
-				<?php if ( 'link' != get_post_format() ) : ?>
+				<?php if ( 'link' != get_post_format() ) { ?>
 
 				<li class="widget-entry-title">
 					<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark"><?php the_title(); ?></a>
@@ -92,7 +92,7 @@ function widget( $args, $instance ) {
 					</span>
 				</li>
 
-				<?php else : ?>
+				<?php } else { ?>
 
 				<li class="widget-entry-title">
 					<a href="<?php echo esc_url( twentyeleven_get_first_url() ); ?>" rel="bookmark"><?php the_title(); ?>&nbsp;<span>&rarr;</span></a>
@@ -101,7 +101,7 @@ function widget( $args, $instance ) {
 					</span>
 				</li>
 
-				<?php endif; ?>
+				<?php } ?>
 
 			<?php endwhile; ?>
 			</ol>
@@ -113,7 +113,7 @@ function widget( $args, $instance ) {
 			wp_reset_postdata();
 
 		// end check for ephemeral posts
-		endif;
+		}
 
 		$cache[$args['widget_id']] = ob_get_flush();
 		wp_cache_set( 'widget_twentyeleven_ephemera', $cache, 'widget' );
diff --git a/wp-content/themes/twentyeleven/index.php b/wp-content/themes/twentyeleven/index.php
index f955f34..e902bf4 100644
--- a/wp-content/themes/twentyeleven/index.php
+++ b/wp-content/themes/twentyeleven/index.php
@@ -17,7 +17,7 @@
 		<div id="primary">
 			<div id="content" role="main">
 
-			<?php if ( have_posts() ) : ?>
+			<?php if ( have_posts() ) { ?>
 
 				<?php twentyeleven_content_nav( 'nav-above' ); ?>
 
@@ -30,7 +30,7 @@
 
 				<?php twentyeleven_content_nav( 'nav-below' ); ?>
 
-			<?php else : ?>
+			<?php } else { ?>
 
 				<article id="post-0" class="post no-results not-found">
 					<header class="entry-header">
@@ -43,7 +43,7 @@
 					</div><!-- .entry-content -->
 				</article><!-- #post-0 -->
 
-			<?php endif; ?>
+			<?php } ?>
 
 			</div><!-- #content -->
 		</div><!-- #primary -->
diff --git a/wp-content/themes/twentyeleven/search.php b/wp-content/themes/twentyeleven/search.php
index bf45c2f..76c62f6 100644
--- a/wp-content/themes/twentyeleven/search.php
+++ b/wp-content/themes/twentyeleven/search.php
@@ -12,7 +12,7 @@
 		<section id="primary">
 			<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', 'twentyeleven' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
@@ -35,7 +35,7 @@
 
 				<?php twentyeleven_content_nav( 'nav-below' ); ?>
 
-			<?php else : ?>
+			<?php } else { ?>
 
 				<article id="post-0" class="post no-results not-found">
 					<header class="entry-header">
@@ -48,7 +48,7 @@
 					</div><!-- .entry-content -->
 				</article><!-- #post-0 -->
 
-			<?php endif; ?>
+			<?php } ?>
 
 			</div><!-- #content -->
 		</section><!-- #primary -->
diff --git a/wp-content/themes/twentyeleven/showcase.php b/wp-content/themes/twentyeleven/showcase.php
index e514231..db1086f 100644
--- a/wp-content/themes/twentyeleven/showcase.php
+++ b/wp-content/themes/twentyeleven/showcase.php
@@ -45,7 +45,7 @@
 					$sticky = get_option( 'sticky_posts' );
 
 					// Proceed only if sticky posts exist.
-					if ( ! empty( $sticky ) ) :
+					if ( ! empty( $sticky ) ) {
 
 					$featured_args = array(
 						'post__in' => $sticky,
@@ -58,7 +58,7 @@
 					$featured = new WP_Query( $featured_args );
 
 					// Proceed only if published posts exist
-					if ( $featured->have_posts() ) :
+					if ( $featured->have_posts() ) {
 
 					/**
 					 * We will need to count featured posts starting from zero
@@ -127,7 +127,7 @@
 
 				<?php
 					// Show slider only if we have more than one featured post.
-					if ( $featured->post_count > 1 ) :
+					if ( $featured->post_count > 1 ) {
 				?>
 				<nav class="feature-slider">
 					<ul>
@@ -151,10 +151,10 @@
 					<?php endwhile;	?>
 					</ul>
 				</nav>
-				<?php endif; // End check for more than one sticky post. ?>
+				<?php } // End check for more than one sticky post. ?>
 				</div><!-- .featured-posts -->
-				<?php endif; // End check for published posts. ?>
-				<?php endif; // End check for sticky posts. ?>
+				<?php } // End check for published posts. ?>
+				<?php } // End check for sticky posts. ?>
 
 				<section class="recent-posts">
 					<h1 class="showcase-heading"><?php _e( 'Recent Posts', 'twentyeleven' ); ?></h1>
@@ -190,7 +190,7 @@
 
 						echo '<ol class="other-recent-posts">';
 
-					endif;
+					}
 
 					// For all other recent posts, just display the title and comment status.
 					while ( $recent->have_posts() ) : $recent->the_post(); ?>
@@ -212,13 +212,13 @@
 				</section><!-- .recent-posts -->
 
 				<div class="widget-area" role="complementary">
-					<?php if ( ! dynamic_sidebar( 'sidebar-2' ) ) : ?>
+					<?php if ( ! dynamic_sidebar( 'sidebar-2' ) ) { ?>
 
 						<?php
 						the_widget( 'Twenty_Eleven_Ephemera_Widget', '', array( 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) );
 						?>
 
-					<?php endif; // end sidebar widget area ?>
+					<?php } // end sidebar widget area ?>
 				</div><!-- .widget-area -->
 
 			</div><!-- #content -->
diff --git a/wp-content/themes/twentyeleven/sidebar-footer.php b/wp-content/themes/twentyeleven/sidebar-footer.php
index cbcb49b..64ae283 100644
--- a/wp-content/themes/twentyeleven/sidebar-footer.php
+++ b/wp-content/themes/twentyeleven/sidebar-footer.php
@@ -22,21 +22,21 @@
 	// If we get this far, we have widgets. Let do this.
 ?>
 <div id="supplementary" <?php twentyeleven_footer_sidebar_class(); ?>>
-	<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
+	<?php if ( is_active_sidebar( 'sidebar-3' ) ) { ?>
 	<div id="first" class="widget-area" role="complementary">
 		<?php dynamic_sidebar( 'sidebar-3' ); ?>
 	</div><!-- #first .widget-area -->
-	<?php endif; ?>
+	<?php } ?>
 
-	<?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?>
+	<?php if ( is_active_sidebar( 'sidebar-4' ) ) { ?>
 	<div id="second" class="widget-area" role="complementary">
 		<?php dynamic_sidebar( 'sidebar-4' ); ?>
 	</div><!-- #second .widget-area -->
-	<?php endif; ?>
+	<?php } ?>
 
-	<?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
+	<?php if ( is_active_sidebar( 'sidebar-5' ) ) { ?>
 	<div id="third" class="widget-area" role="complementary">
 		<?php dynamic_sidebar( 'sidebar-5' ); ?>
 	</div><!-- #third .widget-area -->
-	<?php endif; ?>
+	<?php } ?>
 </div><!-- #supplementary -->
\ No newline at end of file
diff --git a/wp-content/themes/twentyeleven/sidebar.php b/wp-content/themes/twentyeleven/sidebar.php
index 0f08571..d45dbd1 100644
--- a/wp-content/themes/twentyeleven/sidebar.php
+++ b/wp-content/themes/twentyeleven/sidebar.php
@@ -10,10 +10,10 @@
 $options = twentyeleven_get_theme_options();
 $current_layout = $options['theme_layout'];
 
-if ( 'content' != $current_layout ) :
+if ( 'content' != $current_layout ) {
 ?>
 		<div id="secondary" class="widget-area" role="complementary">
-			<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
+			<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) { ?>
 
 				<aside id="archives" class="widget">
 					<h3 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h3>
@@ -31,6 +31,6 @@
 					</ul>
 				</aside>
 
-			<?php endif; // end sidebar widget area ?>
+			<?php } // end sidebar widget area ?>
 		</div><!-- #secondary .widget-area -->
-<?php endif; ?>
\ No newline at end of file
+<?php } ?>
\ No newline at end of file
diff --git a/wp-content/themes/twentyeleven/tag.php b/wp-content/themes/twentyeleven/tag.php
index 8180a8c..3c00a60 100644
--- a/wp-content/themes/twentyeleven/tag.php
+++ b/wp-content/themes/twentyeleven/tag.php
@@ -12,7 +12,7 @@
 		<section id="primary">
 			<div id="content" role="main">
 
-			<?php if ( have_posts() ) : ?>
+			<?php if ( have_posts() ) { ?>
 
 				<header class="page-header">
 					<h1 class="page-title"><?php
@@ -43,7 +43,7 @@
 
 				<?php twentyeleven_content_nav( 'nav-below' ); ?>
 
-			<?php else : ?>
+			<?php } else { ?>
 
 				<article id="post-0" class="post no-results not-found">
 					<header class="entry-header">
@@ -56,7 +56,7 @@
 					</div><!-- .entry-content -->
 				</article><!-- #post-0 -->
 
-			<?php endif; ?>
+			<?php } ?>
 
 			</div><!-- #content -->
 		</section><!-- #primary -->
diff --git a/wp-content/themes/twentyten/archive.php b/wp-content/themes/twentyten/archive.php
index 3899f0e..d63725a 100644
--- a/wp-content/themes/twentyten/archive.php
+++ b/wp-content/themes/twentyten/archive.php
@@ -29,15 +29,15 @@
 ?>
 
 			<h1 class="page-title">
-<?php if ( is_day() ) : ?>
+<?php if ( is_day() ) { ?>
 				<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
-<?php elseif ( is_month() ) : ?>
+<?php } elseif ( is_month() ) { ?>
 				<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); ?>
-<?php elseif ( is_year() ) : ?>
+<?php } elseif ( is_year() ) { ?>
 				<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); ?>
-<?php else : ?>
+<?php } else { ?>
 				<?php _e( 'Blog Archives', 'twentyten' ); ?>
-<?php endif; ?>
+<?php } ?>
 			</h1>
 
 <?php
diff --git a/wp-content/themes/twentyten/author.php b/wp-content/themes/twentyten/author.php
index 2bd48c8..96f986c 100644
--- a/wp-content/themes/twentyten/author.php
+++ b/wp-content/themes/twentyten/author.php
@@ -28,7 +28,7 @@
 
 <?php
 // If a user has filled out their description, show a bio on their entries.
-if ( get_the_author_meta( 'description' ) ) : ?>
+if ( get_the_author_meta( 'description' ) ) { ?>
 					<div id="entry-author-info">
 						<div id="author-avatar">
 							<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
@@ -38,7 +38,7 @@
 							<?php the_author_meta( 'description' ); ?>
 						</div><!-- #author-description	-->
 					</div><!-- #entry-author-info -->
-<?php endif; ?>
+<?php } ?>
 
 <?php
 	/* Since we called the_post() above, we need to
diff --git a/wp-content/themes/twentyten/comments.php b/wp-content/themes/twentyten/comments.php
index 6252728..4b3d036 100644
--- a/wp-content/themes/twentyten/comments.php
+++ b/wp-content/themes/twentyten/comments.php
@@ -14,7 +14,7 @@
 ?>
 
 			<div id="comments">
-<?php if ( post_password_required() ) : ?>
+<?php if ( post_password_required() ) { ?>
 				<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></p>
 			</div><!-- #comments -->
 <?php
@@ -23,25 +23,25 @@
 		 * to fully load the template.
 		 */
 		return;
-	endif;
+	}
 ?>
 
 <?php
 	// You can start editing here -- including this comment!
 ?>
 
-<?php if ( have_comments() ) : ?>
+<?php if ( have_comments() ) { ?>
 			<h3 id="comments-title"><?php
 			printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
 			number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
 			?></h3>
 
-<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
+<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // Are there comments to navigate through? ?>
 			<div class="navigation">
 				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
 				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
 			</div> <!-- .navigation -->
-<?php endif; // check for comment navigation ?>
+<?php } // check for comment navigation ?>
 
 			<ol class="commentlist">
 				<?php
@@ -55,22 +55,22 @@
 				?>
 			</ol>
 
-<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
+<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // Are there comments to navigate through? ?>
 			<div class="navigation">
 				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
 				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
 			</div><!-- .navigation -->
-<?php endif; // check for comment navigation ?>
+<?php } // check for comment navigation ?>
 
 	<?php
 	/* If there are no comments and comments are closed, let's leave a little note, shall we?
 	 * But we only want the note on posts and pages that had comments in the first place.
 	 */
-	if ( ! comments_open() && get_comments_number() ) : ?>
+	if ( ! comments_open() && get_comments_number() ) { ?>
 		<p class="nocomments"><?php _e( 'Comments are closed.' , 'twentyten' ); ?></p>
-	<?php endif;  ?>
+	<?php }  ?>
 
-<?php endif; // end have_comments() ?>
+<?php } // end have_comments() ?>
 
 <?php comment_form(); ?>
 
diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php
index adc7e7a..be6a3d4 100644
--- a/wp-content/themes/twentyten/functions.php
+++ b/wp-content/themes/twentyten/functions.php
@@ -50,7 +50,7 @@
 /** Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
 add_action( 'after_setup_theme', 'twentyten_setup' );
 
-if ( ! function_exists( 'twentyten_setup' ) ):
+if ( ! function_exists( 'twentyten_setup' ) ) {
 /**
  * Sets up theme defaults and registers support for various WordPress features.
  *
@@ -188,9 +188,9 @@ function twentyten_setup() {
 		)
 	) );
 }
-endif;
+}
 
-if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
+if ( ! function_exists( 'twentyten_admin_header_style' ) ) {
 /**
  * Styles the header image displayed on the Appearance > Header admin panel.
  *
@@ -213,7 +213,7 @@ function twentyten_admin_header_style() {
 </style>
 <?php
 }
-endif;
+}
 
 /**
  * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
@@ -244,7 +244,7 @@ function twentyten_excerpt_length( $length ) {
 }
 add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
 
-if ( ! function_exists( 'twentyten_continue_reading_link' ) ) :
+if ( ! function_exists( 'twentyten_continue_reading_link' ) ) {
 /**
  * Returns a "Continue Reading" link for excerpts
  *
@@ -254,7 +254,7 @@ function twentyten_excerpt_length( $length ) {
 function twentyten_continue_reading_link() {
 	return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';
 }
-endif;
+}
 
 /**
  * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and twentyten_continue_reading_link().
@@ -315,7 +315,7 @@ function twentyten_remove_gallery_css( $css ) {
 if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) )
 	add_filter( 'gallery_style', 'twentyten_remove_gallery_css' );
 
-if ( ! function_exists( 'twentyten_comment' ) ) :
+if ( ! function_exists( 'twentyten_comment' ) ) {
 /**
  * Template for comments and pingbacks.
  *
@@ -337,10 +337,10 @@ function twentyten_comment( $comment, $args, $depth ) {
 				<?php echo get_avatar( $comment, 40 ); ?>
 				<?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
 			</div><!-- .comment-author .vcard -->
-			<?php if ( $comment->comment_approved == '0' ) : ?>
+			<?php if ( $comment->comment_approved == '0' ) { ?>
 				<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>
 				<br />
-			<?php endif; ?>
+			<?php } ?>
 
 			<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
 				<?php
@@ -367,7 +367,7 @@ function twentyten_comment( $comment, $args, $depth ) {
 			break;
 	endswitch;
 }
-endif;
+}
 
 /**
  * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.
@@ -465,7 +465,7 @@ function twentyten_remove_recent_comments_style() {
 }
 add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
 
-if ( ! function_exists( 'twentyten_posted_on' ) ) :
+if ( ! function_exists( 'twentyten_posted_on' ) ) {
 /**
  * Prints HTML with meta information for the current post-date/time and author.
  *
@@ -486,9 +486,9 @@ function twentyten_posted_on() {
 		)
 	);
 }
-endif;
+}
 
-if ( ! function_exists( 'twentyten_posted_in' ) ) :
+if ( ! function_exists( 'twentyten_posted_in' ) ) {
 /**
  * Prints HTML with meta information for the current post (category, tags and permalink).
  *
@@ -513,7 +513,7 @@ function twentyten_posted_in() {
 		the_title_attribute( 'echo=0' )
 	);
 }
-endif;
+}
 
 /**
  * Retrieves the IDs for images in a gallery.
diff --git a/wp-content/themes/twentyten/header.php b/wp-content/themes/twentyten/header.php
index 50cb375..4e618f4 100644
--- a/wp-content/themes/twentyten/header.php
+++ b/wp-content/themes/twentyten/header.php
@@ -79,10 +79,10 @@
 					if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
 							has_post_thumbnail( $post->ID ) &&
 							( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
-							$image[1] >= $header_image_width ) :
+							$image[1] >= $header_image_width ) {
 						// Houston, we have a new header image!
 						echo get_the_post_thumbnail( $post->ID );
-					elseif ( get_header_image() ) :
+					} elseif ( get_header_image() ) {
 						// Compatibility with versions of WordPress prior to 3.4.
 						if ( function_exists( 'get_custom_header' ) ) {
 							$header_image_width  = get_custom_header()->width;
@@ -93,7 +93,7 @@
 						}
 					?>
 						<img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
-					<?php endif; ?>
+					<?php } ?>
 			</div><!-- #branding -->
 
 			<div id="access" role="navigation">
diff --git a/wp-content/themes/twentyten/loop-attachment.php b/wp-content/themes/twentyten/loop-attachment.php
index e775869..e507eb1 100644
--- a/wp-content/themes/twentyten/loop-attachment.php
+++ b/wp-content/themes/twentyten/loop-attachment.php
@@ -17,12 +17,12 @@
 
 <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
 
-				<?php if ( ! empty( $post->post_parent ) ) : ?>
+				<?php if ( ! empty( $post->post_parent ) ) { ?>
 					<p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php echo esc_attr( sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ) ); ?>" rel="gallery"><?php
 						/* translators: %s - title of parent post */
 						printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
 					?></a></p>
-				<?php endif; ?>
+				<?php } ?>
 
 				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 					<h2 class="entry-title"><?php the_title(); ?></h2>
@@ -65,7 +65,7 @@
 
 					<div class="entry-content">
 						<div class="entry-attachment">
-<?php if ( wp_attachment_is_image() ) :
+<?php if ( wp_attachment_is_image() ) {
 	$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
 	foreach ( $attachments as $k => $attachment ) {
 		if ( $attachment->ID == $post->ID )
@@ -95,9 +95,9 @@
 							<div class="nav-previous"><?php previous_image_link( false ); ?></div>
 							<div class="nav-next"><?php next_image_link( false ); ?></div>
 						</div><!-- #nav-below -->
-<?php else : ?>
+<?php } else { ?>
 						<a href="<?php echo wp_get_attachment_url(); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
-<?php endif; ?>
+<?php } ?>
 						</div><!-- .entry-attachment -->
 						<div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
 
diff --git a/wp-content/themes/twentyten/loop-single.php b/wp-content/themes/twentyten/loop-single.php
index 1dde4aa..ec38034 100644
--- a/wp-content/themes/twentyten/loop-single.php
+++ b/wp-content/themes/twentyten/loop-single.php
@@ -34,7 +34,7 @@
 						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
 					</div><!-- .entry-content -->
 
-<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries  ?>
+<?php if ( get_the_author_meta( 'description' ) ) { // If a user has filled out their description, show a bio on their entries  ?>
 					<div id="entry-author-info">
 						<div id="author-avatar">
 							<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
@@ -49,7 +49,7 @@
 							</div><!-- #author-link	-->
 						</div><!-- #author-description -->
 					</div><!-- #entry-author-info -->
-<?php endif; ?>
+<?php } ?>
 
 					<div class="entry-utility">
 						<?php twentyten_posted_in(); ?>
diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php
index a2d7f2e..c51c462 100644
--- a/wp-content/themes/twentyten/loop.php
+++ b/wp-content/themes/twentyten/loop.php
@@ -20,15 +20,15 @@
 ?>
 
 <?php /* Display navigation to next/previous pages when applicable */ ?>
-<?php if ( $wp_query->max_num_pages > 1 ) : ?>
+<?php if ( $wp_query->max_num_pages > 1 ) { ?>
 	<div id="nav-above" class="navigation">
 		<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
 		<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
 	</div><!-- #nav-above -->
-<?php endif; ?>
+<?php } ?>
 
 <?php /* If there are no posts to display, such as an empty archive page */ ?>
-<?php if ( ! have_posts() ) : ?>
+<?php if ( ! have_posts() ) { ?>
 	<div id="post-0" class="post error404 not-found">
 		<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
 		<div class="entry-content">
@@ -36,7 +36,7 @@
 			<?php get_search_form(); ?>
 		</div><!-- .entry-content -->
 	</div><!-- #post-0 -->
-<?php endif; ?>
+<?php } ?>
 
 <?php
 	/* Start the Loop.
@@ -57,7 +57,7 @@
 
 <?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
 
-	<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
+	<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) { ?>
 		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
 
@@ -66,12 +66,12 @@
 			</div><!-- .entry-meta -->
 
 			<div class="entry-content">
-<?php if ( post_password_required() ) : ?>
+<?php if ( post_password_required() ) { ?>
 				<?php the_content(); ?>
-<?php else : ?>
+<?php } else { ?>
 				<?php
 					$images = twentyten_get_gallery_images();
-					if ( $images ) :
+					if ( $images ) {
 						$total_images = count( $images );
 						$image = array_shift( $images );
 				?>
@@ -82,19 +82,19 @@
 								'href="' . get_permalink() . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
 								number_format_i18n( $total_images )
 							); ?></em></p>
-				<?php endif; // end twentyten_get_gallery_images() check ?>
+				<?php } // end twentyten_get_gallery_images() check ?>
 						<?php the_excerpt(); ?>
-<?php endif; ?>
+<?php } ?>
 			</div><!-- .entry-content -->
 
 			<div class="entry-utility">
-			<?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?>
+			<?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) { ?>
 				<a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
 				<span class="meta-sep">|</span>
-			<?php elseif ( $gallery = get_term_by( 'slug', _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ) && in_category( $gallery->term_id ) ) : ?>
+			<?php } elseif ( $gallery = get_term_by( 'slug', _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ) && in_category( $gallery->term_id ) ) { ?>
 				<a href="<?php echo get_category_link( $gallery ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
 				<span class="meta-sep">|</span>
-			<?php endif; ?>
+			<?php } ?>
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
@@ -102,18 +102,18 @@
 
 <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
 
-	<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) )  ) : ?>
+	<?php } elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) )  ) { ?>
 		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 
-		<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
+		<?php if ( is_archive() || is_search() ) { // Display excerpts for archives and search. ?>
 			<div class="entry-summary">
 				<?php the_excerpt(); ?>
 			</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?php } else { ?>
 			<div class="entry-content">
 				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
 			</div><!-- .entry-content -->
-		<?php endif; ?>
+		<?php } ?>
 
 			<div class="entry-utility">
 				<?php twentyten_posted_on(); ?>
@@ -125,7 +125,7 @@
 
 <?php /* How to display all other posts. */ ?>
 
-	<?php else : ?>
+	<?php } else { ?>
 		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
 
@@ -133,33 +133,33 @@
 				<?php twentyten_posted_on(); ?>
 			</div><!-- .entry-meta -->
 
-	<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
+	<?php if ( is_archive() || is_search() ) { // Only display excerpts for archives and search. ?>
 			<div class="entry-summary">
 				<?php the_excerpt(); ?>
 			</div><!-- .entry-summary -->
-	<?php else : ?>
+	<?php } else { ?>
 			<div class="entry-content">
 				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
 				<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
 			</div><!-- .entry-content -->
-	<?php endif; ?>
+	<?php } ?>
 
 			<div class="entry-utility">
-				<?php if ( count( get_the_category() ) ) : ?>
+				<?php if ( count( get_the_category() ) ) { ?>
 					<span class="cat-links">
 						<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
 					</span>
 					<span class="meta-sep">|</span>
-				<?php endif; ?>
+				<?php } ?>
 				<?php
 					$tags_list = get_the_tag_list( '', ', ' );
-					if ( $tags_list ):
+					if ( $tags_list ) {
 				?>
 					<span class="tag-links">
 						<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
 					</span>
 					<span class="meta-sep">|</span>
-				<?php endif; ?>
+				<?php } ?>
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
@@ -167,14 +167,14 @@
 
 		<?php comments_template( '', true ); ?>
 
-	<?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
+	<?php } // This was the if statement that broke the loop into three parts based on categories. ?>
 
 <?php endwhile; // End the loop. Whew. ?>
 
 <?php /* Display navigation to next/previous pages when applicable */ ?>
-<?php if (  $wp_query->max_num_pages > 1 ) : ?>
+<?php if (  $wp_query->max_num_pages > 1 ) { ?>
 				<div id="nav-below" class="navigation">
 					<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
 					<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
 				</div><!-- #nav-below -->
-<?php endif; ?>
+<?php } ?>
diff --git a/wp-content/themes/twentyten/search.php b/wp-content/themes/twentyten/search.php
index 3b198bb..208c808 100644
--- a/wp-content/themes/twentyten/search.php
+++ b/wp-content/themes/twentyten/search.php
@@ -12,7 +12,7 @@
 		<div id="container">
 			<div id="content" role="main">
 
-<?php if ( have_posts() ) : ?>
+<?php if ( have_posts() ) { ?>
 				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
 				<?php
 				/* Run the loop for the search to output the results.
@@ -21,7 +21,7 @@
 				 */
 				 get_template_part( 'loop', 'search' );
 				?>
-<?php else : ?>
+<?php } else { ?>
 				<div id="post-0" class="post no-results not-found">
 					<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
 					<div class="entry-content">
@@ -29,7 +29,7 @@
 						<?php get_search_form(); ?>
 					</div><!-- .entry-content -->
 				</div><!-- #post-0 -->
-<?php endif; ?>
+<?php } ?>
 			</div><!-- #content -->
 		</div><!-- #container -->
 
diff --git a/wp-content/themes/twentyten/sidebar-footer.php b/wp-content/themes/twentyten/sidebar-footer.php
index 0e9f702..8c1fdff 100644
--- a/wp-content/themes/twentyten/sidebar-footer.php
+++ b/wp-content/themes/twentyten/sidebar-footer.php
@@ -25,36 +25,36 @@
 
 			<div id="footer-widget-area" role="complementary">
 
-<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
+<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) { ?>
 				<div id="first" class="widget-area">
 					<ul class="xoxo">
 						<?php dynamic_sidebar( 'first-footer-widget-area' ); ?>
 					</ul>
 				</div><!-- #first .widget-area -->
-<?php endif; ?>
+<?php } ?>
 
-<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
+<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) { ?>
 				<div id="second" class="widget-area">
 					<ul class="xoxo">
 						<?php dynamic_sidebar( 'second-footer-widget-area' ); ?>
 					</ul>
 				</div><!-- #second .widget-area -->
-<?php endif; ?>
+<?php } ?>
 
-<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
+<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) { ?>
 				<div id="third" class="widget-area">
 					<ul class="xoxo">
 						<?php dynamic_sidebar( 'third-footer-widget-area' ); ?>
 					</ul>
 				</div><!-- #third .widget-area -->
-<?php endif; ?>
+<?php } ?>
 
-<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
+<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) { ?>
 				<div id="fourth" class="widget-area">
 					<ul class="xoxo">
 						<?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>
 					</ul>
 				</div><!-- #fourth .widget-area -->
-<?php endif; ?>
+<?php } ?>
 
 			</div><!-- #footer-widget-area -->
diff --git a/wp-content/themes/twentyten/sidebar.php b/wp-content/themes/twentyten/sidebar.php
index 8a1664f..34bd06b 100644
--- a/wp-content/themes/twentyten/sidebar.php
+++ b/wp-content/themes/twentyten/sidebar.php
@@ -17,7 +17,7 @@
 	 * then the sidebar simply doesn't exist, so we'll hard-code in
 	 * some default sidebar stuff just in case.
 	 */
-	if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
+	if ( ! dynamic_sidebar( 'primary-widget-area' ) ) { ?>
 
 			<li id="search" class="widget-container widget_search">
 				<?php get_search_form(); ?>
@@ -39,13 +39,13 @@
 				</ul>
 			</li>
 
-		<?php endif; // end primary widget area ?>
+		<?php } // end primary widget area ?>
 			</ul>
 		</div><!-- #primary .widget-area -->
 
 <?php
 	// A second sidebar for widgets, just because.
-	if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
+	if ( is_active_sidebar( 'secondary-widget-area' ) ) { ?>
 
 		<div id="secondary" class="widget-area" role="complementary">
 			<ul class="xoxo">
@@ -53,4 +53,4 @@
 			</ul>
 		</div><!-- #secondary .widget-area -->
 
-<?php endif; ?>
+<?php } ?>
diff --git a/wp-content/themes/twentythirteen/archive.php b/wp-content/themes/twentythirteen/archive.php
index af6c0ca..dae63c3 100644
--- a/wp-content/themes/twentythirteen/archive.php
+++ b/wp-content/themes/twentythirteen/archive.php
@@ -22,18 +22,18 @@
 	<div id="primary" class="content-area">
 		<div id="content" class="site-content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php
-					if ( is_day() ) :
+					if ( is_day() ) {
 						printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
-					elseif ( is_month() ) :
+					} elseif ( is_month() ) {
 						printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
-					elseif ( is_year() ) :
+					} elseif ( is_year() ) {
 						printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
-					else :
+					} else {
 						_e( 'Archives', 'twentythirteen' );
-					endif;
+					}
 				?></h1>
 			</header><!-- .archive-header -->
 
@@ -44,9 +44,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentythirteen/author.php b/wp-content/themes/twentythirteen/author.php
index dd27b07..5b302c5 100644
--- a/wp-content/themes/twentythirteen/author.php
+++ b/wp-content/themes/twentythirteen/author.php
@@ -38,9 +38,9 @@
 				rewind_posts();
 			?>
 
-			<?php if ( get_the_author_meta( 'description' ) ) : ?>
+			<?php if ( get_the_author_meta( 'description' ) ) { ?>
 				<?php get_template_part( 'author-bio' ); ?>
-			<?php endif; ?>
+			<?php } ?>
 
 			<?php /* The loop */ ?>
 			<?php while ( have_posts() ) : the_post(); ?>
@@ -49,9 +49,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentythirteen/category.php b/wp-content/themes/twentythirteen/category.php
index 7971177..c500d30 100644
--- a/wp-content/themes/twentythirteen/category.php
+++ b/wp-content/themes/twentythirteen/category.php
@@ -14,13 +14,13 @@
 	<div id="primary" class="content-area">
 		<div id="content" class="site-content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) ); ?></h1>
 
 				<?php if ( category_description() ) : // Show an optional category description ?>
 				<div class="archive-meta"><?php echo category_description(); ?></div>
-				<?php endif; ?>
+				<?php } ?>
 			</header><!-- .archive-header -->
 
 			<?php /* The loop */ ?>
@@ -30,9 +30,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentythirteen/comments.php b/wp-content/themes/twentythirteen/comments.php
index 22818ac..9348d95 100644
--- a/wp-content/themes/twentythirteen/comments.php
+++ b/wp-content/themes/twentythirteen/comments.php
@@ -39,20 +39,20 @@
 
 		<?php
 			// Are there comments to navigate through?
-			if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
+			if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) {
 		?>
 		<nav class="navigation comment-navigation" role="navigation">
 			<h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'twentythirteen' ); ?></h1>
 			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentythirteen' ) ); ?></div>
 			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentythirteen' ) ); ?></div>
 		</nav><!-- .comment-navigation -->
-		<?php endif; // Check for comment navigation ?>
+		<?php } // Check for comment navigation ?>
 
-		<?php if ( ! comments_open() && get_comments_number() ) : ?>
+		<?php if ( ! comments_open() && get_comments_number() ) { ?>
 		<p class="no-comments"><?php _e( 'Comments are closed.' , 'twentythirteen' ); ?></p>
-		<?php endif; ?>
+		<?php } ?>
 
-	<?php endif; // have_comments() ?>
+	<?php } // have_comments() ?>
 
 	<?php comment_form(); ?>
 
diff --git a/wp-content/themes/twentythirteen/content-aside.php b/wp-content/themes/twentythirteen/content-aside.php
index 9949fdd..e9f527c 100644
--- a/wp-content/themes/twentythirteen/content-aside.php
+++ b/wp-content/themes/twentythirteen/content-aside.php
@@ -15,17 +15,17 @@
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 			<?php twentythirteen_entry_meta(); ?>
 			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 
-			<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 				<?php get_template_part( 'author-bio' ); ?>
-			<?php endif; ?>
+			<?php } ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php twentythirteen_entry_date(); ?>
 			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-audio.php b/wp-content/themes/twentythirteen/content-audio.php
index 23abeaf..96f579b 100644
--- a/wp-content/themes/twentythirteen/content-audio.php
+++ b/wp-content/themes/twentythirteen/content-audio.php
@@ -10,13 +10,13 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
 		<?php else : ?>
 		<h1 class="entry-title">
 			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 		</h1>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
@@ -30,8 +30,8 @@
 		<?php twentythirteen_entry_meta(); ?>
 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-chat.php b/wp-content/themes/twentythirteen/content-chat.php
index eb2fe69..ba66ee6 100644
--- a/wp-content/themes/twentythirteen/content-chat.php
+++ b/wp-content/themes/twentythirteen/content-chat.php
@@ -10,13 +10,13 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
+		<?php } else { ?>
 		<h1 class="entry-title">
 			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 		</h1>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
diff --git a/wp-content/themes/twentythirteen/content-gallery.php b/wp-content/themes/twentythirteen/content-gallery.php
index b9537e8..01d2087 100644
--- a/wp-content/themes/twentythirteen/content-gallery.php
+++ b/wp-content/themes/twentythirteen/content-gallery.php
@@ -10,36 +10,36 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
+		<?php } else { ?>
 		<h1 class="entry-title">
 			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 		</h1>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
-		<?php if ( is_single() || ! get_post_gallery() ) : ?>
+		<?php if ( is_single() || ! get_post_gallery() ) { ?>
 			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?>
 			<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
-		<?php else : ?>
+		<?php } else { ?>
 			<?php echo get_post_gallery(); ?>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
 		<?php twentythirteen_entry_meta(); ?>
 
-		<?php if ( comments_open() && ! is_single() ) : ?>
+		<?php if ( comments_open() && ! is_single() ) { ?>
 		<span class="comments-link">
 			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
 		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
+		<?php } // comments_open() ?>
 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-image.php b/wp-content/themes/twentythirteen/content-image.php
index 34f5144..fdd2be2 100644
--- a/wp-content/themes/twentythirteen/content-image.php
+++ b/wp-content/themes/twentythirteen/content-image.php
@@ -10,13 +10,13 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
 		<?php else : ?>
 		<h1 class="entry-title">
 			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 		</h1>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
@@ -27,15 +27,15 @@
 	<footer class="entry-meta">
 		<?php twentythirteen_entry_meta(); ?>
 
-		<?php if ( comments_open() && ! is_single() ) : ?>
+		<?php if ( comments_open() && ! is_single() ) { ?>
 		<span class="comments-link">
 			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
 		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
+		<?php } // comments_open() ?>
 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-link.php b/wp-content/themes/twentythirteen/content-link.php
index e9082cb..45a9dce 100644
--- a/wp-content/themes/twentythirteen/content-link.php
+++ b/wp-content/themes/twentythirteen/content-link.php
@@ -25,12 +25,12 @@
 		<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
 	</div><!-- .entry-content -->
 
-	<?php if ( is_single() ) : ?>
+	<?php if ( is_single() ) { ?>
 	<footer class="entry-meta">
 		<?php twentythirteen_entry_meta(); ?>
-		<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
-	<?php endif; // is_single() ?>
+	<?php } // is_single() ?>
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-none.php b/wp-content/themes/twentythirteen/content-none.php
index d3d27ec..7f1fb1e 100644
--- a/wp-content/themes/twentythirteen/content-none.php
+++ b/wp-content/themes/twentythirteen/content-none.php
@@ -13,19 +13,19 @@
 </header>
 
 <div class="page-content">
-	<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
+	<?php if ( is_home() && current_user_can( 'publish_posts' ) ) { ?>
 
 	<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentythirteen' ), admin_url( 'post-new.php' ) ); ?></p>
 
-	<?php elseif ( is_search() ) : ?>
+	<?php } elseif ( is_search() ) { ?>
 
 	<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with different keywords.', 'twentythirteen' ); ?></p>
 	<?php get_search_form(); ?>
 
-	<?php else : ?>
+	<?php } else { ?>
 
 	<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentythirteen' ); ?></p>
 	<?php get_search_form(); ?>
 
-	<?php endif; ?>
+	<?php } ?>
 </div><!-- .page-content -->
diff --git a/wp-content/themes/twentythirteen/content-quote.php b/wp-content/themes/twentythirteen/content-quote.php
index 4c3422b..0ca93ad 100644
--- a/wp-content/themes/twentythirteen/content-quote.php
+++ b/wp-content/themes/twentythirteen/content-quote.php
@@ -17,11 +17,11 @@
 	<footer class="entry-meta">
 		<?php twentythirteen_entry_meta(); ?>
 
-		<?php if ( comments_open() && ! is_single() ) : ?>
+		<?php if ( comments_open() && ! is_single() ) { ?>
 		<span class="comments-link">
 			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
 		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
+		<?php } // comments_open() ?>
 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-status.php b/wp-content/themes/twentythirteen/content-status.php
index 281becf..15c2a0c 100644
--- a/wp-content/themes/twentythirteen/content-status.php
+++ b/wp-content/themes/twentythirteen/content-status.php
@@ -18,8 +18,8 @@
 		<?php twentythirteen_entry_meta(); ?>
 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-video.php b/wp-content/themes/twentythirteen/content-video.php
index af2ff71..7c4c7c4 100644
--- a/wp-content/themes/twentythirteen/content-video.php
+++ b/wp-content/themes/twentythirteen/content-video.php
@@ -10,13 +10,13 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
+		<?php } else { ?>
 		<h1 class="entry-title">
 			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 		</h1>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 	</header><!-- .entry-header -->
 
 	<div class="entry-content">
@@ -27,15 +27,15 @@
 	<footer class="entry-meta">
 		<?php twentythirteen_entry_meta(); ?>
 
-		<?php if ( comments_open() && ! is_single() ) : ?>
+		<?php if ( comments_open() && ! is_single() ) { ?>
 		<span class="comments-link">
 			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
 		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
+		<?php } // comments_open() ?>
 		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
 
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content.php b/wp-content/themes/twentythirteen/content.php
index 4f61b22..c4798bc 100644
--- a/wp-content/themes/twentythirteen/content.php
+++ b/wp-content/themes/twentythirteen/content.php
@@ -10,19 +10,19 @@
 
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 	<header class="entry-header">
-		<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
+		<?php if ( has_post_thumbnail() && ! post_password_required() ) { ?>
 		<div class="entry-thumbnail">
 			<?php the_post_thumbnail(); ?>
 		</div>
-		<?php endif; ?>
+		<?php } ?>
 
-		<?php if ( is_single() ) : ?>
+		<?php if ( is_single() ) { ?>
 		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
+		<?php } else { ?>
 		<h1 class="entry-title">
 			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 		</h1>
-		<?php endif; // is_single() ?>
+		<?php } // is_single() ?>
 
 		<div class="entry-meta">
 			<?php twentythirteen_entry_meta(); ?>
@@ -30,26 +30,26 @@
 		</div><!-- .entry-meta -->
 	</header><!-- .entry-header -->
 
-	<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+	<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 	<div class="entry-summary">
 		<?php the_excerpt(); ?>
 	</div><!-- .entry-summary -->
-	<?php else : ?>
+	<?php } else { ?>
 	<div class="entry-content">
 		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?>
 		<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
 	</div><!-- .entry-content -->
-	<?php endif; ?>
+	<?php } ?>
 
 	<footer class="entry-meta">
-		<?php if ( comments_open() && ! is_single() ) : ?>
+		<?php if ( comments_open() && ! is_single() ) { ?>
 			<div class="comments-link">
 				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
 			</div><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
+		<?php } // comments_open() ?>
 
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) { ?>
 			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 	</footer><!-- .entry-meta -->
 </article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/functions.php b/wp-content/themes/twentythirteen/functions.php
index 021cd74..af76b5d 100644
--- a/wp-content/themes/twentythirteen/functions.php
+++ b/wp-content/themes/twentythirteen/functions.php
@@ -291,7 +291,7 @@ function twentythirteen_widgets_init() {
 }
 add_action( 'widgets_init', 'twentythirteen_widgets_init' );
 
-if ( ! function_exists( 'twentythirteen_paging_nav' ) ) :
+if ( ! function_exists( 'twentythirteen_paging_nav' ) ) {
 /**
  * Displays navigation to next/previous set of posts when applicable.
  *
@@ -310,21 +310,21 @@ function twentythirteen_paging_nav() {
 		<h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'twentythirteen' ); ?></h1>
 		<div class="nav-links">
 
-			<?php if ( get_next_posts_link() ) : ?>
+			<?php if ( get_next_posts_link() ) { ?>
 			<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentythirteen' ) ); ?></div>
-			<?php endif; ?>
+			<?php } ?>
 
-			<?php if ( get_previous_posts_link() ) : ?>
+			<?php if ( get_previous_posts_link() ) { ?>
 			<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?></div>
-			<?php endif; ?>
+			<?php } ?>
 
 		</div><!-- .nav-links -->
 	</nav><!-- .navigation -->
 	<?php
 }
-endif;
+}
 
-if ( ! function_exists( 'twentythirteen_post_nav' ) ) :
+if ( ! function_exists( 'twentythirteen_post_nav' ) ) {
 /**
  * Displays navigation to next/previous post when applicable.
 *
@@ -353,9 +353,9 @@ function twentythirteen_post_nav() {
 	</nav><!-- .navigation -->
 	<?php
 }
-endif;
+}
 
-if ( ! function_exists( 'twentythirteen_entry_meta' ) ) :
+if ( ! function_exists( 'twentythirteen_entry_meta' ) ) {
 /**
  * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
  *
@@ -393,9 +393,9 @@ function twentythirteen_entry_meta() {
 		);
 	}
 }
-endif;
+}
 
-if ( ! function_exists( 'twentythirteen_entry_date' ) ) :
+if ( ! function_exists( 'twentythirteen_entry_date' ) ) {
 /**
  * Prints HTML with date information for current post.
  *
@@ -421,9 +421,9 @@ function twentythirteen_entry_date( $echo = true ) {
 
 	return $date;
 }
-endif;
+}
 
-if ( ! function_exists( 'twentythirteen_the_attached_image' ) ) :
+if ( ! function_exists( 'twentythirteen_the_attached_image' ) ) {
 /**
  * Prints the attached image with a link to the next attached image.
  *
@@ -474,7 +474,7 @@ function twentythirteen_the_attached_image() {
 		wp_get_attachment_image( $post->ID, $attachment_size )
 	);
 }
-endif;
+}
 
 /**
  * Returns the URL from the post.
diff --git a/wp-content/themes/twentythirteen/image.php b/wp-content/themes/twentythirteen/image.php
index 4ef31c4..46907a9 100644
--- a/wp-content/themes/twentythirteen/image.php
+++ b/wp-content/themes/twentythirteen/image.php
@@ -56,20 +56,20 @@
 						<div class="attachment">
 							<?php twentythirteen_the_attached_image(); ?>
 
-							<?php if ( has_excerpt() ) : ?>
+							<?php if ( has_excerpt() ) { ?>
 							<div class="entry-caption">
 								<?php the_excerpt(); ?>
 							</div>
-							<?php endif; ?>
+							<?php } ?>
 						</div><!-- .attachment -->
 					</div><!-- .entry-attachment -->
 
-					<?php if ( ! empty( $post->post_content ) ) : ?>
+					<?php if ( ! empty( $post->post_content ) ) { ?>
 					<div class="entry-description">
 						<?php the_content(); ?>
 						<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentythirteen' ), 'after' => '</div>' ) ); ?>
 					</div><!-- .entry-description -->
-					<?php endif; ?>
+					<?php } ?>
 
 				</div><!-- .entry-content -->
 			</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/inc/custom-header.php b/wp-content/themes/twentythirteen/inc/custom-header.php
index 82d1200..3a96b6c 100644
--- a/wp-content/themes/twentythirteen/inc/custom-header.php
+++ b/wp-content/themes/twentythirteen/inc/custom-header.php
@@ -82,17 +82,17 @@ function twentythirteen_header_style() {
 	?>
 	<style type="text/css" id="twentythirteen-header-css">
 	<?php
-		if ( ! empty( $header_image ) ) :
+		if ( ! empty( $header_image ) ) {
 	?>
 		.site-header {
 			background: url(<?php header_image(); ?>) no-repeat scroll top;
 			background-size: 1600px auto;
 		}
 	<?php
-		endif;
+		}
 
 		// Has the text been hidden?
-		if ( ! display_header_text() ) :
+		if ( ! display_header_text() ) {
 	?>
 		.site-title,
 		.site-description {
@@ -101,22 +101,22 @@ function twentythirteen_header_style() {
 			clip: rect(1px, 1px, 1px, 1px);
 		}
 	<?php
-			if ( empty( $header_image ) ) :
+			if ( empty( $header_image ) ) {
 	?>
 		.site-header .home-link {
 			min-height: 0;
 		}
 	<?php
-			endif;
+			}
 
 		// If the user has set a custom color for the text, use that.
-		elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) :
+		} elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) {
 	?>
 		.site-title,
 		.site-description {
 			color: #<?php echo esc_attr( $text_color ); ?>;
 		}
-	<?php endif; ?>
+	<?php } ?>
 	</style>
 	<?php
 }
@@ -153,14 +153,14 @@ function twentythirteen_admin_header_style() {
 		} ?>
 		width: 100%;
 	}
-	<?php if ( ! display_header_text() ) : ?>
+	<?php if ( ! display_header_text() ) { ?>
 	#headimg h1,
 	#headimg h2 {
 		position: absolute !important;
 		clip: rect(1px 1px 1px 1px); /* IE7 */
 		clip: rect(1px, 1px, 1px, 1px);
 	}
-	<?php endif; ?>
+	<?php } ?>
 	#headimg h1 {
 		font: bold 60px/1 Bitter, Georgia, serif;
 		margin: 0;
diff --git a/wp-content/themes/twentythirteen/index.php b/wp-content/themes/twentythirteen/index.php
index 67faeaf..b402262 100644
--- a/wp-content/themes/twentythirteen/index.php
+++ b/wp-content/themes/twentythirteen/index.php
@@ -18,7 +18,7 @@
 
 	<div id="primary" class="content-area">
 		<div id="content" class="site-content" role="main">
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 
 			<?php /* The loop */ ?>
 			<?php while ( have_posts() ) : the_post(); ?>
@@ -27,9 +27,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentythirteen/page.php b/wp-content/themes/twentythirteen/page.php
index 06e38e7..7eab01f 100644
--- a/wp-content/themes/twentythirteen/page.php
+++ b/wp-content/themes/twentythirteen/page.php
@@ -21,11 +21,11 @@
 
 				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 					<header class="entry-header">
-						<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
+						<?php if ( has_post_thumbnail() && ! post_password_required() ) { ?>
 						<div class="entry-thumbnail">
 							<?php the_post_thumbnail(); ?>
 						</div>
-						<?php endif; ?>
+						<?php } ?>
 
 						<h1 class="entry-title"><?php the_title(); ?></h1>
 					</header><!-- .entry-header -->
diff --git a/wp-content/themes/twentythirteen/search.php b/wp-content/themes/twentythirteen/search.php
index 7839def..7822384 100644
--- a/wp-content/themes/twentythirteen/search.php
+++ b/wp-content/themes/twentythirteen/search.php
@@ -12,7 +12,7 @@
 	<div id="primary" class="content-area">
 		<div id="content" class="site-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', 'twentythirteen' ), get_search_query() ); ?></h1>
@@ -25,9 +25,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentythirteen/sidebar-main.php b/wp-content/themes/twentythirteen/sidebar-main.php
index bb6034c..32e4e6b 100644
--- a/wp-content/themes/twentythirteen/sidebar-main.php
+++ b/wp-content/themes/twentythirteen/sidebar-main.php
@@ -9,10 +9,10 @@
  * @since Twenty Thirteen 1.0
  */
 
-if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
+if ( is_active_sidebar( 'sidebar-1' ) ) { ?>
 	<div id="secondary" class="sidebar-container" role="complementary">
 		<div class="widget-area">
 			<?php dynamic_sidebar( 'sidebar-1' ); ?>
 		</div><!-- .widget-area -->
 	</div><!-- #secondary -->
-<?php endif; ?>
\ No newline at end of file
+<?php } ?>
\ No newline at end of file
diff --git a/wp-content/themes/twentythirteen/sidebar.php b/wp-content/themes/twentythirteen/sidebar.php
index 750945c..e09ad2b 100644
--- a/wp-content/themes/twentythirteen/sidebar.php
+++ b/wp-content/themes/twentythirteen/sidebar.php
@@ -9,7 +9,7 @@
  * @since Twenty Thirteen 1.0
  */
 
-if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
+if ( is_active_sidebar( 'sidebar-2' ) ) { ?>
 	<div id="tertiary" class="sidebar-container" role="complementary">
 		<div class="sidebar-inner">
 			<div class="widget-area">
@@ -17,4 +17,4 @@
 			</div><!-- .widget-area -->
 		</div><!-- .sidebar-inner -->
 	</div><!-- #tertiary -->
-<?php endif; ?>
\ No newline at end of file
+<?php } ?>
\ No newline at end of file
diff --git a/wp-content/themes/twentythirteen/tag.php b/wp-content/themes/twentythirteen/tag.php
index 5454005..9ca7949 100644
--- a/wp-content/themes/twentythirteen/tag.php
+++ b/wp-content/themes/twentythirteen/tag.php
@@ -16,13 +16,13 @@
 	<div id="primary" class="content-area">
 		<div id="content" class="site-content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentythirteen' ), single_tag_title( '', false ) ); ?></h1>
 
-				<?php if ( tag_description() ) : // Show an optional tag description ?>
+				<?php if ( tag_description() ) { // Show an optional tag description ?>
 				<div class="archive-meta"><?php echo tag_description(); ?></div>
-				<?php endif; ?>
+				<?php } ?>
 			</header><!-- .archive-header -->
 
 			<?php /* The loop */ ?>
@@ -32,9 +32,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentythirteen/taxonomy-post_format.php b/wp-content/themes/twentythirteen/taxonomy-post_format.php
index 0deb97c..9121dcc 100644
--- a/wp-content/themes/twentythirteen/taxonomy-post_format.php
+++ b/wp-content/themes/twentythirteen/taxonomy-post_format.php
@@ -18,7 +18,7 @@
 	<div id="primary" class="content-area">
 		<div id="content" class="site-content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php printf( __( '%s Archives', 'twentythirteen' ), '<span>' . get_post_format_string( get_post_format() ) . '</span>' ); ?></h1>
 			</header><!-- .archive-header -->
@@ -30,9 +30,9 @@
 
 			<?php twentythirteen_paging_nav(); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentytwelve/archive.php b/wp-content/themes/twentytwelve/archive.php
index 8bfb01c..ee4b42c 100644
--- a/wp-content/themes/twentytwelve/archive.php
+++ b/wp-content/themes/twentytwelve/archive.php
@@ -22,18 +22,18 @@
 	<section id="primary" class="site-content">
 		<div id="content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php
-					if ( is_day() ) :
+					if ( is_day() ) {
 						printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
-					elseif ( is_month() ) :
+					} elseif ( is_month() ) {
 						printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
-					elseif ( is_year() ) :
+					} elseif ( is_year() ) {
 						printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
-					else :
+					} else {
 						_e( 'Archives', 'twentytwelve' );
-					endif;
+					}
 				?></h1>
 			</header><!-- .archive-header -->
 
@@ -52,9 +52,9 @@
 			twentytwelve_content_nav( 'nav-below' );
 			?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</section><!-- #primary -->
diff --git a/wp-content/themes/twentytwelve/author.php b/wp-content/themes/twentytwelve/author.php
index 0fa2e6b..b5fe65b 100644
--- a/wp-content/themes/twentytwelve/author.php
+++ b/wp-content/themes/twentytwelve/author.php
@@ -16,7 +16,7 @@
 	<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
@@ -44,7 +44,7 @@
 
 			<?php
 			// If a user has filled out their description, show a bio on their entries.
-			if ( get_the_author_meta( 'description' ) ) : ?>
+			if ( get_the_author_meta( 'description' ) ) { ?>
 			<div class="author-info">
 				<div class="author-avatar">
 					<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 60 ) ); ?>
@@ -54,7 +54,7 @@
 					<p><?php the_author_meta( 'description' ); ?></p>
 				</div><!-- .author-description	-->
 			</div><!-- .author-info -->
-			<?php endif; ?>
+			<?php } ?>
 
 			<?php /* Start the Loop */ ?>
 			<?php while ( have_posts() ) : the_post(); ?>
@@ -63,9 +63,9 @@
 
 			<?php twentytwelve_content_nav( 'nav-below' ); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</section><!-- #primary -->
diff --git a/wp-content/themes/twentytwelve/category.php b/wp-content/themes/twentytwelve/category.php
index fc50086..c647c90 100644
--- a/wp-content/themes/twentytwelve/category.php
+++ b/wp-content/themes/twentytwelve/category.php
@@ -16,13 +16,13 @@
 	<section id="primary" class="site-content">
 		<div id="content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>
 
-			<?php if ( category_description() ) : // Show an optional category description ?>
+			<?php if ( category_description() ) { // Show an optional category description ?>
 				<div class="archive-meta"><?php echo category_description(); ?></div>
-			<?php endif; ?>
+			<?php } ?>
 			</header><!-- .archive-header -->
 
 			<?php
@@ -40,9 +40,9 @@
 			twentytwelve_content_nav( 'nav-below' );
 			?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</section><!-- #primary -->
diff --git a/wp-content/themes/twentytwelve/comments.php b/wp-content/themes/twentytwelve/comments.php
index 457b9e4..314662e 100644
--- a/wp-content/themes/twentytwelve/comments.php
+++ b/wp-content/themes/twentytwelve/comments.php
@@ -37,23 +37,23 @@
 			<?php wp_list_comments( array( 'callback' => 'twentytwelve_comment', 'style' => 'ol' ) ); ?>
 		</ol><!-- .commentlist -->
 
-		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
+		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) { // are there comments to navigate through ?>
 		<nav id="comment-nav-below" class="navigation" role="navigation">
 			<h1 class="assistive-text section-heading"><?php _e( 'Comment navigation', 'twentytwelve' ); ?></h1>
 			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentytwelve' ) ); ?></div>
 			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentytwelve' ) ); ?></div>
 		</nav>
-		<?php endif; // check for comment navigation ?>
+		<?php } // check for comment navigation ?>
 
 		<?php
 		/* If there are no comments and comments are closed, let's leave a note.
 		 * But we only want the note on posts and pages that had comments in the first place.
 		 */
-		if ( ! comments_open() && get_comments_number() ) : ?>
+		if ( ! comments_open() && get_comments_number() ) { ?>
 		<p class="nocomments"><?php _e( 'Comments are closed.' , 'twentytwelve' ); ?></p>
-		<?php endif; ?>
+		<?php } ?>
 
-	<?php endif; // have_comments() ?>
+	<?php } // have_comments() ?>
 
 	<?php comment_form(); ?>
 
diff --git a/wp-content/themes/twentytwelve/content-aside.php b/wp-content/themes/twentytwelve/content-aside.php
index 4a84ae7..63f4280 100644
--- a/wp-content/themes/twentytwelve/content-aside.php
+++ b/wp-content/themes/twentytwelve/content-aside.php
@@ -18,11 +18,11 @@
 
 		<footer class="entry-meta">
 			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
-			<?php if ( comments_open() ) : ?>
+			<?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() ?>
+			<?php } // comments_open() ?>
 			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post -->
diff --git a/wp-content/themes/twentytwelve/content-image.php b/wp-content/themes/twentytwelve/content-image.php
index a683b83..aae4a95 100644
--- a/wp-content/themes/twentytwelve/content-image.php
+++ b/wp-content/themes/twentytwelve/content-image.php
@@ -18,11 +18,11 @@
 				<h1><?php the_title(); ?></h1>
 				<h2><time class="entry-date" datetime="<?php echo esc_attr( get_the_date( 'c' ) ); ?>"><?php echo get_the_date(); ?></time></h2>
 			</a>
-			<?php if ( comments_open() ) : ?>
+			<?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() ?>
+			<?php } // comments_open() ?>
 			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post -->
diff --git a/wp-content/themes/twentytwelve/content-link.php b/wp-content/themes/twentytwelve/content-link.php
index 31e4ec9..7897083 100644
--- a/wp-content/themes/twentytwelve/content-link.php
+++ b/wp-content/themes/twentytwelve/content-link.php
@@ -16,11 +16,11 @@
 
 		<footer class="entry-meta">
 			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
-			<?php if ( comments_open() ) : ?>
+			<?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() ?>
+			<?php } // comments_open() ?>
 			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post -->
diff --git a/wp-content/themes/twentytwelve/content-page.php b/wp-content/themes/twentytwelve/content-page.php
index 0abcbf7..4211f35 100644
--- a/wp-content/themes/twentytwelve/content-page.php
+++ b/wp-content/themes/twentytwelve/content-page.php
@@ -10,9 +10,9 @@
 
 	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 		<header class="entry-header">
-			<?php if ( ! is_page_template( 'page-templates/front-page.php' ) ) : ?>
+			<?php if ( ! is_page_template( 'page-templates/front-page.php' ) ) { ?>
 			<?php the_post_thumbnail(); ?>
-			<?php endif; ?>
+			<?php } ?>
 			<h1 class="entry-title"><?php the_title(); ?></h1>
 		</header>
 
diff --git a/wp-content/themes/twentytwelve/content-quote.php b/wp-content/themes/twentytwelve/content-quote.php
index 0a98a96..0a8d683 100644
--- a/wp-content/themes/twentytwelve/content-quote.php
+++ b/wp-content/themes/twentytwelve/content-quote.php
@@ -15,11 +15,11 @@
 
 		<footer class="entry-meta">
 			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
-			<?php if ( comments_open() ) : ?>
+			<?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() ?>
+			<?php } // comments_open() ?>
 			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post -->
diff --git a/wp-content/themes/twentytwelve/content-status.php b/wp-content/themes/twentytwelve/content-status.php
index 55ffcae..eaf0a43 100644
--- a/wp-content/themes/twentytwelve/content-status.php
+++ b/wp-content/themes/twentytwelve/content-status.php
@@ -22,11 +22,11 @@
 		</div><!-- .entry-content -->
 
 		<footer class="entry-meta">
-			<?php if ( comments_open() ) : ?>
+			<?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() ?>
+			<?php } // comments_open() ?>
 			<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post -->
diff --git a/wp-content/themes/twentytwelve/content.php b/wp-content/themes/twentytwelve/content.php
index bf2936c..962b8fd 100644
--- a/wp-content/themes/twentytwelve/content.php
+++ b/wp-content/themes/twentytwelve/content.php
@@ -9,42 +9,42 @@
 ?>
 
 	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
+		<?php if ( is_sticky() && is_home() && ! is_paged() ) { ?>
 		<div class="featured-post">
 			<?php _e( 'Featured post', 'twentytwelve' ); ?>
 		</div>
-		<?php endif; ?>
+		<?php } ?>
 		<header class="entry-header">
 			<?php the_post_thumbnail(); ?>
-			<?php if ( is_single() ) : ?>
+			<?php if ( is_single() ) { ?>
 			<h1 class="entry-title"><?php the_title(); ?></h1>
-			<?php else : ?>
+			<?php } else { ?>
 			<h1 class="entry-title">
 				<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
 			</h1>
-			<?php endif; // is_single() ?>
-			<?php if ( comments_open() ) : ?>
+			<?php } // 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() ?>
+			<?php } // comments_open() ?>
 		</header><!-- .entry-header -->
 
-		<?php if ( is_search() ) : // Only display Excerpts for Search ?>
+		<?php if ( is_search() ) { // Only display Excerpts for Search ?>
 		<div class="entry-summary">
 			<?php the_excerpt(); ?>
 		</div><!-- .entry-summary -->
-		<?php else : ?>
+		<?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; ?>
+		<?php } ?>
 
 		<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. ?>
+			<?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 class="author-info">
 					<div class="author-avatar">
 						<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?>
@@ -59,6 +59,6 @@
 						</div><!-- .author-link	-->
 					</div><!-- .author-description -->
 				</div><!-- .author-info -->
-			<?php endif; ?>
+			<?php } ?>
 		</footer><!-- .entry-meta -->
 	</article><!-- #post -->
diff --git a/wp-content/themes/twentytwelve/functions.php b/wp-content/themes/twentytwelve/functions.php
index 0498139..bf9ac5d 100644
--- a/wp-content/themes/twentytwelve/functions.php
+++ b/wp-content/themes/twentytwelve/functions.php
@@ -266,7 +266,7 @@ function twentytwelve_widgets_init() {
 }
 add_action( 'widgets_init', 'twentytwelve_widgets_init' );
 
-if ( ! function_exists( 'twentytwelve_content_nav' ) ) :
+if ( ! function_exists( 'twentytwelve_content_nav' ) ) {
 /**
  * Displays navigation to next/previous pages when applicable.
  *
@@ -277,17 +277,17 @@ function twentytwelve_content_nav( $html_id ) {
 
 	$html_id = esc_attr( $html_id );
 
-	if ( $wp_query->max_num_pages > 1 ) : ?>
+	if ( $wp_query->max_num_pages > 1 ) { ?>
 		<nav id="<?php echo $html_id; ?>" class="navigation" role="navigation">
 			<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
 			<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentytwelve' ) ); ?></div>
 			<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?></div>
 		</nav><!-- #<?php echo $html_id; ?> .navigation -->
-	<?php endif;
+	<?php }
+}
 }
-endif;
 
-if ( ! function_exists( 'twentytwelve_comment' ) ) :
+if ( ! function_exists( 'twentytwelve_comment' ) ) {
 /**
  * Template for comments and pingbacks.
  *
@@ -332,9 +332,9 @@ function twentytwelve_comment( $comment, $args, $depth ) {
 				?>
 			</header><!-- .comment-meta -->
 
-			<?php if ( '0' == $comment->comment_approved ) : ?>
+			<?php if ( '0' == $comment->comment_approved ) { ?>
 				<p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentytwelve' ); ?></p>
-			<?php endif; ?>
+			<?php } ?>
 
 			<section class="comment-content comment">
 				<?php comment_text(); ?>
@@ -349,9 +349,9 @@ function twentytwelve_comment( $comment, $args, $depth ) {
 		break;
 	endswitch; // end comment_type check
 }
-endif;
+}
 
-if ( ! function_exists( 'twentytwelve_entry_meta' ) ) :
+if ( ! function_exists( 'twentytwelve_entry_meta' ) ) {
 /**
  * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
  *
@@ -396,7 +396,7 @@ function twentytwelve_entry_meta() {
 		$author
 	);
 }
-endif;
+}
 
 /**
  * Extends the default WordPress body class to denote:
diff --git a/wp-content/themes/twentytwelve/header.php b/wp-content/themes/twentytwelve/header.php
index 2d3dfa6..6a89822 100644
--- a/wp-content/themes/twentytwelve/header.php
+++ b/wp-content/themes/twentytwelve/header.php
@@ -46,9 +46,9 @@
 		</nav><!-- #site-navigation -->
 
 		<?php $header_image = get_header_image();
-		if ( ! empty( $header_image ) ) : ?>
+		if ( ! empty( $header_image ) ) { ?>
 			<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
-		<?php endif; ?>
+		<?php } ?>
 	</header><!-- #masthead -->
 
 	<div id="main" class="wrapper">
\ No newline at end of file
diff --git a/wp-content/themes/twentytwelve/image.php b/wp-content/themes/twentytwelve/image.php
index b2fcb42..3292ed8 100644
--- a/wp-content/themes/twentytwelve/image.php
+++ b/wp-content/themes/twentytwelve/image.php
@@ -60,29 +60,29 @@
 
 $k++;
 // If there is more than 1 attachment in a gallery
-if ( count( $attachments ) > 1 ) :
-	if ( isset( $attachments[ $k ] ) ) :
+if ( count( $attachments ) > 1 ) {
+	if ( isset( $attachments[ $k ] ) ) {
 		// get the URL of the next image attachment
 		$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
-	else :
+	} else {
 		// or get the URL of the first image attachment
 		$next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
-	endif;
-else :
+	}
+} else {
 	// or, if there's only 1 image, get the URL of the image
 	$next_attachment_url = wp_get_attachment_url();
-endif;
+}
 ?>
 								<a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
 								$attachment_size = apply_filters( 'twentytwelve_attachment_size', array( 960, 960 ) );
 								echo wp_get_attachment_image( $post->ID, $attachment_size );
 								?></a>
 
-								<?php if ( ! empty( $post->post_excerpt ) ) : ?>
+								<?php if ( ! empty( $post->post_excerpt ) ) { ?>
 								<div class="entry-caption">
 									<?php the_excerpt(); ?>
 								</div>
-								<?php endif; ?>
+								<?php } ?>
 							</div><!-- .attachment -->
 
 						</div><!-- .entry-attachment -->
diff --git a/wp-content/themes/twentytwelve/inc/custom-header.php b/wp-content/themes/twentytwelve/inc/custom-header.php
index 595bf98..c8928db 100644
--- a/wp-content/themes/twentytwelve/inc/custom-header.php
+++ b/wp-content/themes/twentytwelve/inc/custom-header.php
@@ -79,7 +79,7 @@ function twentytwelve_header_style() {
 	<style type="text/css" id="twentytwelve-header-css">
 	<?php
 		// Has the text been hidden?
-		if ( ! display_header_text() ) :
+		if ( ! display_header_text() ) {
 	?>
 		.site-title,
 		.site-description {
@@ -89,13 +89,13 @@ function twentytwelve_header_style() {
 		}
 	<?php
 		// If the user has set a custom color for the text, use that.
-		else :
+		} else {
 	?>
 		.site-header h1 a,
 		.site-header h2 {
 			color: #<?php echo $text_color; ?>;
 		}
-	<?php endif; ?>
+	<?php } ?>
 	</style>
 	<?php
 }
@@ -158,8 +158,8 @@ function twentytwelve_admin_header_image() {
 		<h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
 		<h2 id="desc" class="displaying-header-text"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></h2>
 		<?php $header_image = get_header_image();
-		if ( ! empty( $header_image ) ) : ?>
+		if ( ! empty( $header_image ) ) { ?>
 			<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
-		<?php endif; ?>
+		<?php } ?>
 	</div>
 <?php }
\ No newline at end of file
diff --git a/wp-content/themes/twentytwelve/index.php b/wp-content/themes/twentytwelve/index.php
index 91201b4..af28cda 100644
--- a/wp-content/themes/twentytwelve/index.php
+++ b/wp-content/themes/twentytwelve/index.php
@@ -18,7 +18,7 @@
 
 	<div id="primary" class="site-content">
 		<div id="content" role="main">
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 
 			<?php /* Start the Loop */ ?>
 			<?php while ( have_posts() ) : the_post(); ?>
@@ -27,11 +27,11 @@
 
 			<?php twentytwelve_content_nav( 'nav-below' ); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 
 			<article id="post-0" class="post no-results not-found">
 
-			<?php if ( current_user_can( 'edit_posts' ) ) :
+			<?php if ( current_user_can( 'edit_posts' ) ) {
 				// Show a different message to a logged-in user who can add posts.
 			?>
 				<header class="entry-header">
@@ -42,7 +42,7 @@
 					<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 :
+			<?php } else {
 				// Show the default message to everyone else.
 			?>
 				<header class="entry-header">
@@ -53,11 +53,11 @@
 					<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 -->
-			<?php endif; // end current_user_can() check ?>
+			<?php } // end current_user_can() check ?>
 
 			</article><!-- #post-0 -->
 
-		<?php endif; // end have_posts() check ?>
+		<?php } // end have_posts() check ?>
 
 		</div><!-- #content -->
 	</div><!-- #primary -->
diff --git a/wp-content/themes/twentytwelve/page-templates/front-page.php b/wp-content/themes/twentytwelve/page-templates/front-page.php
index 9ae4f27..72b530f 100644
--- a/wp-content/themes/twentytwelve/page-templates/front-page.php
+++ b/wp-content/themes/twentytwelve/page-templates/front-page.php
@@ -18,11 +18,11 @@
 		<div id="content" role="main">
 
 			<?php while ( have_posts() ) : the_post(); ?>
-				<?php if ( has_post_thumbnail() ) : ?>
+				<?php if ( has_post_thumbnail() ) { ?>
 					<div class="entry-page-image">
 						<?php the_post_thumbnail(); ?>
 					</div><!-- .entry-page-image -->
-				<?php endif; ?>
+				<?php } ?>
 
 				<?php get_template_part( 'content', 'page' ); ?>
 
diff --git a/wp-content/themes/twentytwelve/search.php b/wp-content/themes/twentytwelve/search.php
index 4eea82c..0a1a42e 100644
--- a/wp-content/themes/twentytwelve/search.php
+++ b/wp-content/themes/twentytwelve/search.php
@@ -12,7 +12,7 @@
 	<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>
@@ -27,7 +27,7 @@
 
 			<?php twentytwelve_content_nav( 'nav-below' ); ?>
 
-		<?php else : ?>
+		<?php } else { ?>
 
 			<article id="post-0" class="post no-results not-found">
 				<header class="entry-header">
@@ -40,7 +40,7 @@
 				</div><!-- .entry-content -->
 			</article><!-- #post-0 -->
 
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</section><!-- #primary -->
diff --git a/wp-content/themes/twentytwelve/sidebar-front.php b/wp-content/themes/twentytwelve/sidebar-front.php
index 4dfa140..e3f8241 100644
--- a/wp-content/themes/twentytwelve/sidebar-front.php
+++ b/wp-content/themes/twentytwelve/sidebar-front.php
@@ -21,15 +21,15 @@
 // If we get this far, we have widgets. Let do this.
 ?>
 <div id="secondary" class="widget-area" role="complementary">
-	<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
+	<?php if ( is_active_sidebar( 'sidebar-2' ) ) { ?>
 	<div class="first front-widgets">
 		<?php dynamic_sidebar( 'sidebar-2' ); ?>
 	</div><!-- .first -->
-	<?php endif; ?>
+	<?php } ?>
 
-	<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
+	<?php if ( is_active_sidebar( 'sidebar-3' ) ) { ?>
 	<div class="second front-widgets">
 		<?php dynamic_sidebar( 'sidebar-3' ); ?>
 	</div><!-- .second -->
-	<?php endif; ?>
+	<?php } ?>
 </div><!-- #secondary -->
\ No newline at end of file
diff --git a/wp-content/themes/twentytwelve/sidebar.php b/wp-content/themes/twentytwelve/sidebar.php
index 2bc4969..6459602 100644
--- a/wp-content/themes/twentytwelve/sidebar.php
+++ b/wp-content/themes/twentytwelve/sidebar.php
@@ -10,8 +10,8 @@
  */
 ?>
 
-	<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
+	<?php if ( is_active_sidebar( 'sidebar-1' ) ) { ?>
 		<div id="secondary" class="widget-area" role="complementary">
 			<?php dynamic_sidebar( 'sidebar-1' ); ?>
 		</div><!-- #secondary -->
-	<?php endif; ?>
\ No newline at end of file
+	<?php } ?>
\ No newline at end of file
diff --git a/wp-content/themes/twentytwelve/tag.php b/wp-content/themes/twentytwelve/tag.php
index 9bf77e0..d3a82b0 100644
--- a/wp-content/themes/twentytwelve/tag.php
+++ b/wp-content/themes/twentytwelve/tag.php
@@ -16,13 +16,13 @@
 	<section id="primary" class="site-content">
 		<div id="content" role="main">
 
-		<?php if ( have_posts() ) : ?>
+		<?php if ( have_posts() ) { ?>
 			<header class="archive-header">
 				<h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
 
-			<?php if ( tag_description() ) : // Show an optional tag description ?>
+			<?php if ( tag_description() ) { // Show an optional tag description ?>
 				<div class="archive-meta"><?php echo tag_description(); ?></div>
-			<?php endif; ?>
+			<?php } ?>
 			</header><!-- .archive-header -->
 
 			<?php
@@ -40,9 +40,9 @@
 			twentytwelve_content_nav( 'nav-below' );
 			?>
 
-		<?php else : ?>
+		<?php } else { ?>
 			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
+		<?php } ?>
 
 		</div><!-- #content -->
 	</section><!-- #primary -->
