17 lines
193 B
PHP
17 lines
193 B
PHP
<?php get_header(); ?>
|
|
|
|
|
|
<?php if (have_posts()) : ?>
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
the_content();
|
|
?>
|
|
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php get_footer();
|