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