forked from bryanveloso/chaoticsoul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
20 lines (16 loc) · 765 Bytes
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php get_header(); ?>
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class('post'); ?> id="post-<?php the_ID(); ?>">
<h2 class="title"><?php the_title(); ?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">'.__('Read the rest of this page »', 'chaoticsoul').'</p>'); ?>
<?php link_pages('<p><strong>'.__('Pages:', 'chaoticsoul').'</strong> ', '</p>', 'number'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(__('Edit this entry.', 'chaoticsoul'), '<p>', '</p>'); ?>
<?php if ( comments_open() ) comments_template(); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>