Index: wp-content/themes/twentyfourteen/content-aside.php
===================================================================
--- wp-content/themes/twentyfourteen/content-aside.php	(revision 25913)
+++ wp-content/themes/twentyfourteen/content-aside.php	(working copy)
@@ -18,6 +18,14 @@
 		</div><!-- .entry-meta -->
 		<?php endif; ?>
 
+		<?php
+			if ( is_single() ) :
+				the_title( '<h1 class="entry-title">', '</h1>' );
+			else :
+				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
+			endif;
+		?>
+
 		<div class="entry-meta">
 			<span class="post-format">
 				<a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'aside' ) ); ?>"><?php echo get_post_format_string( 'aside' ); ?></a>
@@ -46,16 +54,6 @@
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
-		<div class="entry-meta">
-			<?php
-				if ( is_single() ) :
-					the_title( '<h1 class="entry-title">', '</h1>' );
-				else :
-					the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
-				endif;
-			?>
-		</div>
-
 		<?php if ( has_tag() ) : ?>
 		<span class="tag-links"><?php echo get_the_tag_list(); ?></span>
 		<?php endif; ?>
Index: wp-content/themes/twentyfourteen/content-link.php
===================================================================
--- wp-content/themes/twentyfourteen/content-link.php	(revision 25913)
+++ wp-content/themes/twentyfourteen/content-link.php	(working copy)
@@ -18,6 +18,14 @@
 		</div><!-- .entry-meta -->
 		<?php endif; ?>
 
+		<?php
+			if ( is_single() ) :
+				the_title( '<h1 class="entry-title">', '</h1>' );
+			else :
+				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
+			endif;
+		?>
+
 		<div class="entry-meta">
 			<span class="post-format">
 				<a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>"><?php echo get_post_format_string( 'link' ); ?></a>
Index: wp-content/themes/twentyfourteen/content-quote.php
===================================================================
--- wp-content/themes/twentyfourteen/content-quote.php	(revision 25913)
+++ wp-content/themes/twentyfourteen/content-quote.php	(working copy)
@@ -18,6 +18,14 @@
 		</div><!-- .entry-meta -->
 		<?php endif; ?>
 
+		<?php
+			if ( is_single() ) :
+				the_title( '<h1 class="entry-title">', '</h1>' );
+			else :
+				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
+			endif;
+		?>
+
 		<div class="entry-meta">
 			<span class="post-format">
 				<a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>"><?php echo get_post_format_string( 'quote' ); ?></a>
@@ -46,16 +54,6 @@
 	</div><!-- .entry-content -->
 
 	<footer class="entry-meta">
-		<div class="entry-meta">
-			<?php
-				if ( is_single() ) :
-					the_title( '<h1 class="entry-title">', '</h1>' );
-				else :
-					the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
-				endif;
-			?>
-		</div>
-
 		<?php if ( has_tag() ) : ?>
 		<span class="tag-links"><?php echo get_the_tag_list(); ?></span>
 		<?php endif; ?>
Index: wp-content/themes/twentyfourteen/content.php
===================================================================
--- wp-content/themes/twentyfourteen/content.php	(revision 25913)
+++ wp-content/themes/twentyfourteen/content.php	(working copy)
@@ -20,7 +20,13 @@
 		</div>
 		<?php endif; ?>
 
-		<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
+		<?php
+			if ( is_single() ) :
+				the_title( '<h1 class="entry-title">', '</h1>' );
+			else :
+				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
+			endif;
+		?>
 
 		<div class="entry-meta">
 			<?php
Index: wp-content/themes/twentyfourteen/style.css
===================================================================
--- wp-content/themes/twentyfourteen/style.css	(revision 25913)
+++ wp-content/themes/twentyfourteen/style.css	(working copy)
@@ -1058,7 +1058,7 @@
 	clear: none;
 	font-size: 15px;
 	font-weight: 900;
-	line-height: 18px;
+	line-height: 1.2;
 	margin: 0 0 6px 0;
 }
 
@@ -1079,7 +1079,6 @@
 }
 
 
-
 /**
  * 6.3 Entry Meta
  * -----------------------------------------------------------------------------
@@ -1506,23 +1505,13 @@
 	padding-top: 0;
 }
 
-.site-content .entry-meta .entry-title {
-	font-size: 12px;
-	font-weight: 400;
-	line-height: 1.3333333333;
-	margin-bottom: 8px;
-	text-transform: none;
+.site-content .format-link .entry-title,
+.site-content .format-aside .entry-title,
+.site-content .format-quote .entry-title {
+	display: none;
 }
 
-.entry-meta .entry-title a {
-	color: #767676;
-}
 
-.entry-meta .entry-title a:hover {
-	color: #2b2b2b;
-}
-
-
 /**
  * 6.6 Post/Image/Paging Navigation
  * -----------------------------------------------------------------------------
