-
Notifications
You must be signed in to change notification settings - Fork 8
/
page.php
24 lines (18 loc) · 962 Bytes
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php get_header(); ?>
<div id="container">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="hentry post" id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<?php edit_post_link(__( 'Edit this entry', 'greenpark' ), '<small class="meta">', '</small>'); ?>
<div class="entry">
<?php the_content(''); ?>
<?php wp_link_pages(array('before' => '<div class="page-link clearfix"><strong>Pages:</strong>', 'after' => '</div>', 'next_or_number' => 'number', 'pagelink' => '<span>%</span>')); ?>
</div>
</div>
<?php if (get_option('greenpark2_comments_page_disable') != 'yes') { comments_template('', true); } ?>
<?php endwhile; endif; ?>
</div> <!-- #content -->
</div> <!-- #container -->
<?php if(get_option('greenpark2_sidebar_disablesidebar') != true) get_sidebar(); ?>
<?php get_footer(); ?>