2004-12-30 12:25:15 +01:00
|
|
|
<?php get_header(); ?>
|
2004-12-30 12:14:01 +01:00
|
|
|
|
2005-01-24 06:59:00 +01:00
|
|
|
<div id="content" class="narrowcolumn">
|
2004-12-30 12:14:01 +01:00
|
|
|
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
|
|
<div class="post">
|
2005-01-24 06:59:00 +01:00
|
|
|
<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
|
2004-12-30 12:14:01 +01:00
|
|
|
<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>
|
|
|
|
|
2005-01-24 06:59:00 +01:00
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
|
2004-12-30 12:25:15 +01:00
|
|
|
<?php get_footer(); ?>
|