2004-12-30 06:25:15 -05:00
|
|
|
<?php 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
|
|
|
|
|
|
|
<?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
|
|
|
|
2004-12-30 06:14:01 -05:00
|
|
|
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2004-12-30 06:14:01 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?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(); ?>
|