<!– This is the front-page.php file, which should act as the static homepage –>

<?php get_header(); ?>

<section>

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

        <h1><?php the_title(); ?></h1>
        <?php the_content(); ?>

<?php endwhile; else: ?>
        <p>Page not found!</p>
<?php endif; ?>
<!-- End Loop -->

</section>

<?php get_footer(); ?>