<?php
get_header();
?>
<section class="single-blog-post">
<div class="container">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<h3> <?php echo esc_html( get_the_title() ); ?></h3>
<?php
if (have_posts()):
while (have_posts()) : the_post();
the_content();
endwhile;
else:
echo '<p>Sorry, no posts matched your criteria.</p>';
endif;
?>
<p class="post-date"><?php echo get_the_date(); ?></p>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>