Blog

<?php
/**
 * The main index file (Fallback)
 */
get_header();
?>

<section class="section">
    <div class="container">
        <?php
        if ( have_posts() ) :
            while ( have_posts() ) : the_post();
                ?>
                <div class="entry-content">
                    <h1><?php the_title(); ?></h1>
                    <?php the_content(); ?>
                </div>
                <?php
            endwhile;
        else :
            echo '<p>No content found.</p>';
        endif;
        ?>
    </div>
</section>

<?php get_footer(); ?>