9 lines
234 B
PHP
9 lines
234 B
PHP
<?php get_header(); ?>
|
|
<main class="content">
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<h2><?php the_title(); ?></h2>
|
|
<?php the_content(); ?>
|
|
<?php endwhile; endif; ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|