2010-02-07 17:16:26 +01:00
|
|
|
<?php get_header(); ?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<div id="container">
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="content">
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php the_post(); ?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
|
|
<div class="entry-content">
|
2010-02-14 02:00:22 +01:00
|
|
|
<?php the_content(); ?>
|
2010-03-16 21:17:22 +01:00
|
|
|
<?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>' ); ?>
|
2010-02-14 02:00:22 +01:00
|
|
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- .entry-content -->
|
2010-02-08 19:02:23 +01:00
|
|
|
</div><!-- #post-<?php the_ID(); ?> -->
|
|
|
|
|
2010-02-14 02:00:22 +01:00
|
|
|
<?php comments_template( '', true ); ?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
</div><!-- #content -->
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #container -->
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 21:17:22 +01:00
|
|
|
<?php get_footer(); ?>
|