| 1 | Index: wp-content/themes/twentytwelve/page-templates/full-width.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-content/themes/twentytwelve/page-templates/full-width.php (revision 22166) |
|---|
| 4 | +++ wp-content/themes/twentytwelve/page-templates/full-width.php (working copy) |
|---|
| 5 | @@ -17,14 +17,18 @@ |
|---|
| 6 | get_header(); ?> |
|---|
| 7 | |
|---|
| 8 | <div id="primary" class="site-content"> |
|---|
| 9 | + |
|---|
| 10 | <div id="content" role="main"> |
|---|
| 11 | |
|---|
| 12 | - <?php while ( have_posts() ) : the_post(); ?> |
|---|
| 13 | - <?php get_template_part( 'content', 'page' ); ?> |
|---|
| 14 | - <?php comments_template( '', true ); ?> |
|---|
| 15 | - <?php endwhile; // end of the loop. ?> |
|---|
| 16 | + <?php // Start the Loop |
|---|
| 17 | + while ( have_posts() ) : the_post(); |
|---|
| 18 | + get_template_part( 'content', 'page' ); |
|---|
| 19 | + comments_template( '', true ); |
|---|
| 20 | + endwhile; // end of the loop. |
|---|
| 21 | + ?> |
|---|
| 22 | |
|---|
| 23 | </div><!-- #content --> |
|---|
| 24 | + |
|---|
| 25 | </div><!-- #primary --> |
|---|
| 26 | |
|---|
| 27 | <?php get_footer(); ?> |
|---|
| 28 | \ No newline at end of file |
|---|
| 29 | Index: wp-content/themes/twentytwelve/page-templates/front-page.php |
|---|
| 30 | =================================================================== |
|---|
| 31 | --- wp-content/themes/twentytwelve/page-templates/front-page.php (revision 22166) |
|---|
| 32 | +++ wp-content/themes/twentytwelve/page-templates/front-page.php (working copy) |
|---|
| 33 | @@ -15,6 +15,7 @@ |
|---|
| 34 | get_header(); ?> |
|---|
| 35 | |
|---|
| 36 | <div id="primary" class="site-content"> |
|---|
| 37 | + |
|---|
| 38 | <div id="content" role="main"> |
|---|
| 39 | |
|---|
| 40 | <?php while ( have_posts() ) : the_post(); ?> |
|---|
| 41 | @@ -29,6 +30,7 @@ |
|---|
| 42 | <?php endwhile; // end of the loop. ?> |
|---|
| 43 | |
|---|
| 44 | </div><!-- #content --> |
|---|
| 45 | + |
|---|
| 46 | </div><!-- #primary --> |
|---|
| 47 | |
|---|
| 48 | <?php get_sidebar( 'front' ); ?> |
|---|