<?php get_header(); ?>

<section class="simple-page">


<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  <h2><?php the_title(); ?></h2>
  <section class="byl-justext">
    <?php the_content(); ?>
  </section>

<?php endwhile; else: ?>
  <section class="byl-justext">
    <?php the_content(); ?>
  </section>

<?php endif; ?>
</section>

<?php get_footer(); ?>