18 lines
274 B
PHP
18 lines
274 B
PHP
<?php get_header(); ?>
|
|
|
|
<main id="content" class="site-content flex-grow">
|
|
<?php if (have_posts()) : ?>
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
the_content();
|
|
?>
|
|
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|
|
</main>
|