mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
c9d92fc859
git-svn-id: http://svn.automattic.com/wordpress/trunk@13025 1a063a9b-81f0-0310-95a4-ce76da25c4cd
23 lines
677 B
PHP
23 lines
677 B
PHP
<?php get_header(); ?>
|
|
|
|
<div id="container">
|
|
<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(); ?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #container -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|