Ticket #25325: 25325.diff
File 25325.diff, 2.7 KB (added by , 12 years ago) |
---|
-
src/wp-content/themes/twentyfourteen/style.css
1007 1007 padding: 24px 10px 12px; 1008 1008 padding: 2.4rem 1.0rem 1.2rem; 1009 1009 } 1010 .page .content-area .entry-header { 1011 padding-bottom: 0; 1012 } 1010 1013 .content-area .entry-title { 1011 1014 font-size: 33px; 1012 1015 font-size: 3.3rem; … … 2543 2546 margin: 0 4.59183673% 2.4rem; 2544 2547 padding: 0 4.46428571%; 2545 2548 } 2546 .page .content-area .entry-header,2547 2549 .error404 .content-area .page-header { 2548 2550 margin: 0 4.59183673%; 2549 2551 padding: 0 4.46428571% 12px; … … 2672 2674 margin: 12px 8.03571428% 24px 12.5%; 2673 2675 margin: 1.2rem 8.03571428% 2.4rem 12.5%; 2674 2676 } 2675 .page .content-area .entry-header,2676 2677 .error404 .content-area .page-header { 2677 2678 margin: 0 8.03571428% 0 12.5%; 2678 2679 } … … 2880 2881 .secondary-navigation ul li:hover > ul { 2881 2882 display: block; 2882 2883 } 2883 .page .content-area .entry-header,2884 2884 .error404 .content-area .page-header { 2885 2885 margin: 0 4.59183673%; 2886 2886 padding: 0 4.46428571% 12px; … … 3011 3011 margin: 0 8.03571428% 24px 12.5%; 3012 3012 margin: 0 8.03571428% 2.4rem 12.5%; 3013 3013 } 3014 .page .content-area .entry-header,3015 3014 .error404 .content-area .page-header { 3016 3015 margin: 0 8.03571428% 0 12.5%; 3017 3016 } -
src/wp-content/themes/twentyfourteen/content-page.php
8 8 ?> 9 9 10 10 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 11 <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyfourteen' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="attachment-featured-thumbnail"> 12 <?php the_post_thumbnail( 'featured-thumbnail-large' ); ?> 13 </a> 14 11 15 <?php the_title( '<header class="entry-header"><h1 class="entry-title">', '</h1></header><!-- .entry-header -->' ); ?> 12 16 13 17 <div class="entry-content"> -
src/wp-content/themes/twentyfourteen/functions.php
59 59 add_theme_support( 'automatic-feed-links' ); 60 60 61 61 // Enable support for Post Thumbnails. 62 add_theme_support( 'post-thumbnails' , array( 'post' ));62 add_theme_support( 'post-thumbnails' ); 63 63 64 64 // Adding several sizes for Post Thumbnails. 65 65 add_image_size( 'featured-thumbnail-large', 672, 0 );