-
Notifications
You must be signed in to change notification settings - Fork 10
/
page.php
23 lines (19 loc) · 816 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
<?php get_header(); ?>
<div id="content">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('page'); ?>>
<article>
<h1><?php the_title(); ?></h1>
<small><?php edit_post_link(__('Edit this page', 'iftheme')); ?></small>
<?php if ( has_post_thumbnail() ) { echo '<div class="featured-thumbnail-page">'; the_post_thumbnail('categ-img'); echo '</div>'; } ?>
<div class="post-content page-content">
<?php the_content(); ?>
<?php wp_link_pages('before=<div class="pagination">&after=</div>'); ?>
</div><!--.post-content .page-content -->
</article>
</div><!--#post-# .post-->
<?php //comments_template( '', true ); ?>
<?php endwhile; ?>
</div><!--#content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>