]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentyeleven/page.php
Wordpress 3.2.1
[autoinstalls/wordpress.git] / wp-content / themes / twentyeleven / page.php
1 <?php
2 /**
3  * The template for displaying all pages.
4  *
5  * This is the template that displays all pages by default.
6  * Please note that this is the WordPress construct of pages
7  * and that other 'pages' on your WordPress site will use a
8  * different template.
9  *
10  * @package WordPress
11  * @subpackage Twenty_Eleven
12  * @since Twenty Eleven 1.0
13  */
14
15 get_header(); ?>
16
17                 <div id="primary">
18                         <div id="content" role="main">
19
20                                 <?php the_post(); ?>
21
22                                 <?php get_template_part( 'content', 'page' ); ?>
23
24                                 <?php comments_template( '', true ); ?>
25
26                         </div><!-- #content -->
27                 </div><!-- #primary -->
28
29 <?php get_footer(); ?>