<!– This is the index.php file, which acts as a fallback if no other templates are found –>
<?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>Post not found!</p> <?php endif; ?> <!-- End Loop -->
</section>
<?php get_footer(); ?>