<!– This is the home.php file, which is essentially the “blog” page –>

<?php get_header(); ?>

<section>

<!-- Start Loop -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

        <?php get_template_part( 'partials/content', 'post' ); ?>

<?php endwhile; else: ?>
        <p>No Posts to display!</p>
<?php endif; ?>
<!-- End Loop -->

</section>

<?php get_footer(); ?>