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