20 lines
695 B
PHP
20 lines
695 B
PHP
<?php get_header(); ?>
|
|
|
|
<main id="primary" class="site-main">
|
|
<div class="container">
|
|
<div class="content-area">
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('page-content'); ?>>
|
|
<div class="page-content-inner">
|
|
<h1 class="page-title"><?php the_title(); ?></h1>
|
|
<div class="page-entry">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|