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
|
|
|
|
2006-11-19 08:56:05 +01:00
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
2005-05-01 20:51:10 +02:00
|
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
|
|
|
<h2><?php the_title(); ?></h2>
|
2006-07-26 19:43:41 +02:00
|
|
|
<div class="entry">
|
2004-12-30 12:14:01 +01:00
|
|
|
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-10-02 20:03:34 +02:00
|
|
|
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2006-11-19 08:56:05 +01:00
|
|
|
<?php endwhile; endif; ?>
|
2005-01-24 09:15:10 +01:00
|
|
|
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
|
2004-12-30 12:14:01 +01:00
|
|
|
</div>
|
|
|
|
|
2005-01-24 06:59:00 +01:00
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
|
2004-12-30 12:25:15 +01:00
|
|
|
<?php get_footer(); ?>
|