0dae6cb745
git-svn-id: https://develop.svn.wordpress.org/trunk@21642 602fd350-edb4-49c9-b593-d223f7449a82
25 lines
547 B
PHP
25 lines
547 B
PHP
<?php
|
|
/**
|
|
* Template Name: Full-width Page Template, No Sidebar
|
|
*
|
|
* @todo Better documentation here.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Twelve
|
|
* @since Twenty Twelve 1.0
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="primary" class="site-content">
|
|
<div id="content" role="main">
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<?php get_template_part( 'content', 'page' ); ?>
|
|
<?php comments_template( '', true ); ?>
|
|
<?php endwhile; // end of the loop. ?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #primary -->
|
|
|
|
<?php get_footer(); ?>
|