Changeset 25985 for trunk/src/wp-content/themes/twentyfourteen/single.php
- Timestamp:
- 10/29/2013 07:05:02 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/single.php
r25769 r25985 10 10 get_header(); ?> 11 11 12 <div id="primary" class="content-area"> 13 <div id="content" class="site-content" role="main"> 14 <?php 15 while ( have_posts() ) : 16 the_post(); 12 <div id="main-content" class="main-content"> 13 <div id="primary" class="content-area"> 14 <div id="content" class="site-content" role="main"> 15 <?php 16 while ( have_posts() ) : 17 the_post(); 17 18 18 get_template_part( 'content', get_post_format() );19 get_template_part( 'content', get_post_format() ); 19 20 20 twentyfourteen_post_nav();21 twentyfourteen_post_nav(); 21 22 22 // If comments are open or we have at least one comment, load up the comment template. 23 if ( comments_open() || get_comments_number() ) 24 comments_template(); 25 endwhile; 26 ?> 27 </div><!-- #content --> 28 </div><!-- #primary --> 23 // If comments are open or we have at least one comment, load up the comment template. 24 if ( comments_open() || get_comments_number() ) 25 comments_template(); 26 endwhile; 27 ?> 28 </div><!-- #content --> 29 </div><!-- #primary --> 30 <?php get_sidebar( 'content' ); ?> 31 </div><!-- #main-content --> 29 32 30 33 <?php 31 get_sidebar( 'content' );32 34 get_sidebar(); 33 35 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.