mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
28 lines
791 B
PHP
28 lines
791 B
PHP
|
|
||
|
<?php
|
||
|
/*
|
||
|
Template Name: One column, no sidebar
|
||
|
Description: A template with no sidebar
|
||
|
*/
|
||
|
get_header(); ?>
|
||
|
|
||
|
<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(); ?>
|
||
|
<?php wp_link_pages( '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 the_ID(); ?> -->
|
||
|
|
||
|
<?php comments_template( '', true ); ?>
|
||
|
|
||
|
</div><!-- #content -->
|
||
|
</div><!-- #container -->
|
||
|
|
||
|
<?php get_footer(); ?>
|