WordPress/wp-content/themes/default/page.php
saxmatt 7844233eb2 Some Kubrick cleanups
git-svn-id: http://svn.automattic.com/wordpress/trunk@2135 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2005-01-24 08:15:10 +00:00

21 lines
572 B
PHP

<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>