mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 09:49:37 +01:00
b0213b6af7
git-svn-id: http://svn.automattic.com/wordpress/trunk@15226 1a063a9b-81f0-0310-95a4-ce76da25c4cd
39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Template Name: One column, no sidebar
|
|
*
|
|
* A custom page template without sidebar.
|
|
*
|
|
* The "Template Name:" bit above allows this to be selectable
|
|
* from a dropdown menu on the edit page screen.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Ten
|
|
* @since Twenty Ten 1.0
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="container" class="one-column">
|
|
<div id="content" role="main">
|
|
|
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
|
|
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
<div class="entry-content">
|
|
<?php the_content(); ?>
|
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
|
</div><!-- .entry-content -->
|
|
</div><!-- #post-## -->
|
|
|
|
<?php comments_template( '', true ); ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #container -->
|
|
|
|
<?php get_footer(); ?>
|