~canonical-sysadmins/wordpress/4.1.3

« back to all changes in this revision

Viewing changes to wp-content/themes/twentytwelve/page.php

  • Committer: Nick Moffitt
  • Date: 2015-01-15 11:05:37 UTC
  • mfrom: (1.1.1 wp4-upstream)
  • Revision ID: nick.moffitt@canonical.com-20150115110537-8bp1y42eyg0jsa7c
Tags: 4.1
MergeĀ upstreamĀ versionĀ 4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
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_Twelve
12
 
 * @since Twenty Twelve 1.0
13
 
 */
14
 
 
15
 
get_header(); ?>
16
 
 
17
 
        <div id="primary" class="site-content">
18
 
                <div id="content" role="main">
19
 
 
20
 
                        <?php while ( have_posts() ) : the_post(); ?>
21
 
                                <?php get_template_part( 'content', 'page' ); ?>
22
 
                                <?php comments_template( '', true ); ?>
23
 
                        <?php endwhile; // end of the loop. ?>
24
 
 
25
 
                </div><!-- #content -->
26
 
        </div><!-- #primary -->
27
 
 
28
 
<?php get_sidebar(); ?>
29
 
<?php get_footer(); ?>
 
 
b'\\ No newline at end of file'