<?php
/**
 * @package WordPress
 * @subpackage Koi
 */

// Do not delete these lines
	if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' == basename( $_SERVER['SCRIPT_FILENAME'] ) )
		die ( __( 'Please do not load this page directly. Thanks!', 'koi' ) );

	if ( post_password_required() ) { ?>
		<p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view comments.', 'koi' ); ?></p>
	<?php
		return;
	}
?>

<!-- You can start editing here. -->

<div id="comments">

<?php if ( have_comments() ) : ?>

	<h3><?php comments_number( __('Leave a comment', 'koi'), __('1 Comment', 'koi'), __('% Comments', 'koi') );?> <em>(<a href="#respond"><?php _e('+add yours?', 'koi'); ?></a>)</em></h3>

	<div class="comment-nav">
		<span class="previous"><?php previous_comments_link( __('Older', 'koi') ); ?></span>
		<span class="next"><?php next_comments_link( __('Newer', 'koi') ); ?></span>
	</div>

	<ol class="commentlist">
	<?php wp_list_comments( 'callback=koi_comment' ); ?>
	</ol>

 <?php else : // this is displayed if there are no comments so far ?>

	<?php if ( comments_open() ) : ?>
		<!-- If comments are open, but there are no comments. -->

	 <?php else : // comments are closed ?>
		<!-- If comments are closed. -->
		<p class="nocomments"><?php _e('Comments are closed', 'koi'); ?>.</p>

	<?php endif; ?>
<?php endif; ?>

<?php if ( comments_open() ) : ?>

<?php comment_form(); ?>

<?php endif; // if you delete this the sky will fall on your head ?>

</div><!-- /comments -->