@@ -13,20 +13,20 @@ |
||
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 | 20 | <?php |
21 | 21 | // If comments are open or we have at least one comment, load up the comment template. |
22 | - if ( comments_open() || '0' !== get_comments_number() ) : |
|
22 | + if (comments_open() || '0' !== get_comments_number()) : |
|
23 | 23 | comments_template(); |
24 | 24 | endif; |
25 | 25 | |
26 | - the_post_navigation( array( |
|
27 | - 'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'strip' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . esc_html_x( '←', 'Previous post link', 'strip' ) . '</span> %title</span>', |
|
28 | - 'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'strip' ) . '</span> %title <span aria-hidden="true" class="nav-subtitle">' . esc_html_x( '→', 'Next post link', 'strip' ) . '</span> </span>', |
|
29 | - ) ); |
|
26 | + the_post_navigation(array( |
|
27 | + 'prev_text' => '<span class="screen-reader-text">' . __('Previous Post', 'strip') . '</span><span aria-hidden="true" class="nav-subtitle">' . esc_html_x('←', 'Previous post link', 'strip') . '</span> %title</span>', |
|
28 | + 'next_text' => '<span class="screen-reader-text">' . __('Next Post', 'strip') . '</span> %title <span aria-hidden="true" class="nav-subtitle">' . esc_html_x('→', 'Next post link', 'strip') . '</span> </span>', |
|
29 | + )); |
|
30 | 30 | |
31 | 31 | endwhile; // end of the loop. ?> |
32 | 32 |