mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 09:49:37 +01:00
37c1aa422d
git-svn-id: http://svn.automattic.com/wordpress/trunk@2123 1a063a9b-81f0-0310-95a4-ce76da25c4cd
20 lines
511 B
PHP
20 lines
511 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 »</p>'); ?>
|
|
|
|
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php endwhile; endif; ?>
|
|
</div>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|