@@ -13,15 +13,15 @@ |
||
| 13 | 13 | <section id="primary"> |
| 14 | 14 | <main id="content" role="main"> |
| 15 | 15 | |
| 16 | - <?php while ( have_posts() ) : the_post(); ?> |
|
| 16 | + <?php while (have_posts()) : the_post(); ?> |
|
| 17 | 17 | |
| 18 | - <?php get_template_part( 'content', get_post_format() ); ?> |
|
| 18 | + <?php get_template_part('content', get_post_format()); ?> |
|
| 19 | 19 | |
| 20 | - <?php strip_content_nav( 'nav-below' ); ?> |
|
| 20 | + <?php strip_content_nav('nav-below'); ?> |
|
| 21 | 21 | |
| 22 | 22 | <?php |
| 23 | 23 | // If comments are open or we have at least one comment, load up the comment template. |
| 24 | - if ( comments_open() || '0' !== get_comments_number() ) : |
|
| 24 | + if (comments_open() || '0' !== get_comments_number()) : |
|
| 25 | 25 | comments_template(); |
| 26 | 26 | endif; ?> |
| 27 | 27 | |