<?php
get_header();
?>

<main id="site-content" role="main">
    <div class="custom-container">
        <h1><?php the_title(); ?></h1>
        <div class="custom-content">
            <?php
            while (have_posts()) :
                the_post();
                the_content();
            endwhile;
            ?>
        </div>
    </div>
</main>

<?php get_footer(); ?>