<?php include 'header.php'; ?>
<div id="content">
<div class="post">
<h1><a href="<?php echo $post->permalink; ?>"><?php echo $post->title; ?></a></h1>
<small><b>Posted:</b> <?php $post->pubdate->out(); ?> | <b>Author:</b> <?php $post->author->displayname; ?> <?php if ( is_array( $post->tags ) ) : ?>| <b>Tags:</b> <?php echo $post->tags_out; endif; ?> <?php if ( $loggedin ) : ?> | <b>Modify:</b> <a href="<?php echo $post->editlink; ?>">EDIT</a> <?php endif; ?>| <a href="<?php echo $post->permalink.'#comment-form'; ?>" title="<?php _e( "Comments on this post" ); ?>"><?php $theme->post_comments_link( $post, _t('No Comments'), _t('%s Comment'), _t('%s Comments') ); ?></a></small>
<?php echo $post->content_out; ?>
<hr/>
</div>
<div id="comments">
<?php include 'comments.php'; ?>
<?php include 'commentform.php'; ?>
</div>
<div class="navigation">
<div class="alignleft"><?php $theme->next_page_link( _t('Older Posts') ); ?></div>
<div class="alignright"><?php $theme->prev_page_link( _t('Newer Posts') ); ?></div>
</div>
</div>
<?php include 'sidebar.php' ?>
<?php include 'footer.php'; ?>