14 lines
222 B
PHP
14 lines
222 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content-area">
|
|
<?php
|
|
if (have_posts()) :
|
|
while (have_posts()) : the_post();
|
|
the_content();
|
|
endwhile;
|
|
endif;
|
|
?>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|