comicpress-core/page.php

22 lines
743 B
PHP
Raw Normal View History

2009-06-13 11:58:02 +00:00
<?php get_header() ?>
2009-07-01 00:01:05 +00:00
<div id="content" class="narrowcolumn">
2009-06-13 11:58:02 +00:00
<?php if (have_posts()) : while (have_posts()) : the_post() ?>
<div class="post-page-head"></div>
<div class="post-page" id="post-<?php the_ID() ?>">
<h2 class="pagetitle"><?php the_title() ?></h2>
<div class="entry">
<?php the_content() ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')) ?>
</div>
<?php edit_post_link('Edit this page.', '<p>', '</p>') ?>
<br class="clear-margins" />
</div>
<div class="post-page-foot"></div>
<?php endwhile; endif; ?>
2009-06-30 23:55:03 +00:00
<?php comments_template(); ?>
2009-06-13 11:58:02 +00:00
</div>
2009-07-15 21:10:13 +00:00
<?php include(get_template_directory() . '/sidebar.php') ?>
2009-06-13 11:58:02 +00:00
<?php get_footer() ?>