Changeset 26217
- Timestamp:
- 11/15/2013 07:01:00 PM (12 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/404.php
r25985 r26217 10 10 get_header(); ?> 11 11 12 <div id="main-content" class="main-content"> 12 13 13 <div id="primary" class="content-area"> 14 14 <div id="content" class="site-content" role="main"> … … 26 26 </div><!-- #content --> 27 27 </div><!-- #primary --> 28 <?php get_sidebar( 'content' ); ?>29 </div><!-- #main-content -->30 28 31 29 <?php 30 get_sidebar( 'content' ); 32 31 get_sidebar(); 33 32 get_footer(); -
trunk/src/wp-content/themes/twentyfourteen/archive.php
r25985 r26217 20 20 get_header(); ?> 21 21 22 <div id="main-content" class="main-content">23 22 <section id="primary" class="content-area"> 24 23 <div id="content" class="site-content" role="main"> … … 61 60 </div><!-- #content --> 62 61 </section><!-- #primary --> 63 <?php get_sidebar( 'content' ); ?>64 </div><!-- #main-content -->65 62 66 63 <?php 64 get_sidebar( 'content' ); 67 65 get_sidebar(); 68 66 get_footer(); -
trunk/src/wp-content/themes/twentyfourteen/category.php
r25985 r26217 12 12 get_header(); ?> 13 13 14 <div id="main-content" class="main-content">15 14 <section id="primary" class="content-area"> 16 15 <div id="content" class="site-content" role="main"> … … 45 44 </div><!-- #content --> 46 45 </section><!-- #primary --> 47 <?php get_sidebar( 'content' ); ?>48 </div><!-- #main-content -->49 46 50 47 <?php 48 get_sidebar( 'content' ); 51 49 get_sidebar(); 52 50 get_footer(); -
trunk/src/wp-content/themes/twentyfourteen/functions.php
r26152 r26217 218 218 */ 219 219 function twentyfourteen_scripts() { 220 global $wp_styles; 221 220 222 // Add Lato font, used in the main stylesheet. 221 223 wp_enqueue_style( 'twentyfourteen-lato', twentyfourteen_font_url(), array(), null ); … … 229 231 // Load the Internet Explorer specific stylesheet. 230 232 wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style' ), '20131110' ); 231 wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' );233 $wp_styles->add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' ); 232 234 233 235 if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) -
trunk/src/wp-content/themes/twentyfourteen/image.php
r25985 r26217 13 13 ?> 14 14 15 <div id="main-content" class="main-content">16 15 <section id="primary" class="content-area image-attachment"> 17 16 <div id="content" class="site-content" role="main"> … … 86 85 </div><!-- #content --> 87 86 </section><!-- #primary --> 88 </div><!-- #main-content -->89 87 90 88 <?php -
trunk/src/wp-content/themes/twentyfourteen/search.php
r25985 r26217 10 10 get_header(); ?> 11 11 12 <div id="main-content" class="main-content">13 12 <section id="primary" class="content-area"> 14 13 <div id="content" class="site-content" role="main"> … … 36 35 </div><!-- #content --> 37 36 </section><!-- #primary --> 38 <?php get_sidebar( 'content' ); ?>39 </div><!-- #main-content -->40 37 41 38 <?php 39 get_sidebar( 'content' ); 42 40 get_sidebar(); 43 41 get_footer(); -
trunk/src/wp-content/themes/twentyfourteen/single.php
r25985 r26217 10 10 get_header(); ?> 11 11 12 <div id="main-content" class="main-content">13 12 <div id="primary" class="content-area"> 14 13 <div id="content" class="site-content" role="main"> … … 28 27 </div><!-- #content --> 29 28 </div><!-- #primary --> 30 <?php get_sidebar( 'content' ); ?>31 </div><!-- #main-content -->32 29 33 30 <?php 31 get_sidebar( 'content' ); 34 32 get_sidebar(); 35 33 get_footer(); -
trunk/src/wp-content/themes/twentyfourteen/tag.php
r26030 r26217 14 14 get_header(); ?> 15 15 16 <div id="main-content" class="main-content">17 16 <section id="primary" class="content-area"> 18 17 <div id="content" class="site-content" role="main"> … … 47 46 </div><!-- #content --> 48 47 </section><!-- #primary --> 49 <?php get_sidebar( 'content' ); ?>50 </div><!-- #main-content -->51 48 52 49 <?php 50 get_sidebar( 'content' ); 53 51 get_sidebar(); 54 52 get_footer(); -
trunk/src/wp-content/themes/twentyfourteen/taxonomy-post_format.php
r26030 r26217 16 16 get_header(); ?> 17 17 18 <div id="main-content" class="main-content">19 18 <section id="primary" class="content-area"> 20 19 <div id="content" class="site-content" role="main"> … … 69 68 </div><!-- #content --> 70 69 </section><!-- #primary --> 71 <?php get_sidebar( 'content' ); ?>72 </div><!-- #main-content -->73 70 74 71 <?php 72 get_sidebar( 'content' ); 75 73 get_sidebar(); 76 74 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.