-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
29 lines (19 loc) · 1.45 KB
/
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
25
26
27
28
29
<?php get_header(); ?>
<div id="container">
<div id="content">
<?php the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_post_thumbnail(); ?>
<?php the_content(); ?>
<div class="clear"></div>
<?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'nano-blogger' ) . '&after=</div>') ?>
<?php edit_post_link( __( 'Edit', 'nano-blogger' ), '<span class="edit-link">', '</span>' ) ?>
</div><!-- .entry-content -->
</div><!-- #post-<?php the_ID(); ?> -->
<?php comments_template( '', true ); ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>