-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
35 lines (29 loc) · 943 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
35
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the wordpress construct of pages
* and that other 'pages' on your wordpress site will use a
* different template.
*
* @package WordPress
* @subpackage Foursquare Two
* @since Foursquare Two 1.0
*/
get_header(); ?>
<div class="row">
<section id="page" class="span7">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<hr />
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'twentyten' ), 'after' => '' ) ); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '', '' ); ?>
<?php endwhile; ?>
</section><!--end page-->
<?php include ('sidebar-page.php'); ?>
</div><!--end row-->
<?php include ('sidebar-footer.php'); ?>
</div><!--end container (in header.php)-->
<?php get_footer(); ?>