2008-09-27 09:49:27 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Default_Theme
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
2004-12-30 11:14:01 +00:00
|
|
|
|
2009-04-16 16:42:32 +00:00
|
|
|
<div id="content" class="narrowcolumn" role="main">
|
2004-12-30 11:14:01 +00:00
|
|
|
|
2006-11-19 07:56:05 +00:00
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
2005-05-01 18:51:10 +00:00
|
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
|
|
|
<h2><?php the_title(); ?></h2>
|
2006-07-26 17:43:41 +00:00
|
|
|
<div class="entry">
|
2004-12-30 11:14:01 +00:00
|
|
|
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2006-10-02 18:03:34 +00:00
|
|
|
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2004-12-30 11:14:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2006-11-19 07:56:05 +00:00
|
|
|
<?php endwhile; endif; ?>
|
2005-01-24 08:15:10 +00:00
|
|
|
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
|
2004-12-30 11:14:01 +00:00
|
|
|
</div>
|
|
|
|
|
2005-01-24 05:59:00 +00:00
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
|
2009-04-16 16:42:32 +00:00
|
|
|
<?php get_footer(); ?>
|