WordPress/wp-content/themes/kubrick/page.php
saxmatt 74dbae73ec Some Kubrick cleanups.
git-svn-id: http://svn.automattic.com/wordpress/trunk@2013 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2004-12-30 11:25:15 +00:00

17 lines
422 B
PHP

<?php get_header(); ?>
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<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; ?>
</div>
<?php get_footer(); ?>