21 lines
266 B
PHP
21 lines
266 B
PHP
<?php get_header("minimal"); ?>
|
|
|
|
<div class="container mx-auto">
|
|
|
|
<?php if (have_posts()) : ?>
|
|
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
?>
|
|
|
|
<?php the_content(); ?>
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|