mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
7844233eb2
git-svn-id: http://svn.automattic.com/wordpress/trunk@2135 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
572 B
PHP
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 »</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(); ?>
|