18 lines
439 B
PHP
18 lines
439 B
PHP
<?php include "header.php"; ?>
|
|
|
|
<div id="content" class="widecolumn">
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<div class="post">
|
|
<div class="entrytext">
|
|
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
|
|
|
|
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php endwhile; endif; ?>
|
|
</div>
|
|
|
|
<?php include "footer.php"; ?>
|