2010-02-17 20:05:39 +01:00
|
|
|
<?php
|
2010-03-30 00:03:15 +02:00
|
|
|
/**
|
|
|
|
* Template Name: One column, no sidebar
|
|
|
|
*
|
|
|
|
* A custom page template without sidebar.
|
|
|
|
* Selectable from a dropdown menu on the edit page screen.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty Ten
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php get_header(); ?>
|
2010-02-17 20:05:39 +01:00
|
|
|
|
|
|
|
<div id="container" class="onecolumn">
|
|
|
|
<div id="content">
|
|
|
|
|
|
|
|
<?php 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(); ?>
|
2010-03-26 06:37:55 +01:00
|
|
|
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
|
2010-02-17 20:05:39 +01:00
|
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
</div><!-- #post-<?php the_ID(); ?> -->
|
|
|
|
|
|
|
|
<?php comments_template( '', true ); ?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #container -->
|
|
|
|
|
2010-03-16 21:17:22 +01:00
|
|
|
<?php get_footer(); ?>
|