| 123456789101112131415161718192021222324252627282930313233343536 | <?php get_header(); ?>	<div id="primary" class="content-area">		<main id="main" class="site-main" role="main">		<?php		if ( have_posts() ) :			if ( is_home() && ! is_front_page() ) : ?>				<header>					<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>				</header>			<?php			endif;			while ( have_posts() ) : the_post();				get_template_part( 'template-parts/content', get_post_format() );			endwhile;			the_posts_navigation();		else :			get_template_part( 'template-parts/content', 'none' );		endif; ?>		</main><!-- #main -->	</div><!-- #primary --><?phpget_sidebar();get_footer();
 |