-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.php
34 lines (23 loc) · 870 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
25
26
27
28
29
30
31
32
33
34
<?php
/**
* @package WordPress
* @subpackage Coraline
* @since Coraline 1.0
*/
get_header(); ?>
<div id="page-content">
<div id="page-body">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="container">
<?php the_content(); ?>
<div class="linked-pages"><?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'coraline' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'maker-faire-online' ),
'<span class="edit-link">', '</span>' ); ?>
</div><!-- #container -->
</div><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; ?>
</div><!-- #page-body -->
</div><!-- #page-content -->
<?php get_footer(); ?>