Wordpress Theme Step By Step Tutorial - Part 16: Now, it's time to update our single post display. We ever talk at here about single post. We will modify with layout that we made at front page.
Open your "single.php" within wp-content/themes/crown. Replace with following code:

<? get_header(); ?>
<div class="separator">
</div>
<div id="post_container">
<div id="left_part">
<? if(have_posts()): ?>
<? while(have_posts()): ?>
<? the_post() ?>
<h1>
<a href='<?=the_permalink()?>'><?=the_title()?></a>
</h1>
<? _e("Posted "); ?> by <? the_author(); ?> at
<? the_time('F js, Y') ?>
<? the_content("more"); ?>
<? endwhile; ?>
<? endif; ?>
</div>
<? get_sidebar(); ?>
<div class="separator">
</div>
<? get_footer(); ?>