@@ -18,12 +18,12 @@ |
||
18 | 18 | <div class="row"> |
19 | 19 | <main id="main" class="site-main" role="main"> |
20 | 20 | <?php |
21 | - while ( have_posts() ) : the_post(); |
|
21 | + while (have_posts()) : the_post(); |
|
22 | 22 | |
23 | - get_template_part( 'template-parts/content', 'page' ); |
|
23 | + get_template_part('template-parts/content', 'page'); |
|
24 | 24 | |
25 | 25 | // If comments are open or we have at least one comment, load up the comment template. |
26 | - if ( comments_open() || get_comments_number() ) : |
|
26 | + if (comments_open() || get_comments_number()) : |
|
27 | 27 | comments_template(); |
28 | 28 | endif; |
29 | 29 |
@@ -14,14 +14,14 @@ |
||
14 | 14 | <main id="main" class="site-main" role="main"> |
15 | 15 | |
16 | 16 | <?php |
17 | - while ( have_posts() ) : the_post(); |
|
17 | + while (have_posts()) : the_post(); |
|
18 | 18 | |
19 | - get_template_part( 'template-parts/content', get_post_format() ); |
|
19 | + get_template_part('template-parts/content', get_post_format()); |
|
20 | 20 | |
21 | 21 | the_post_navigation(); |
22 | 22 | |
23 | 23 | // If comments are open or we have at least one comment, load up the comment template. |
24 | - if ( comments_open() || get_comments_number() ) : |
|
24 | + if (comments_open() || get_comments_number()) : |
|
25 | 25 | comments_template(); |
26 | 26 | endif; |
27 | 27 |