<?php
/*
* Blue Taste Wordpress Theme By Jabox (http://www.jabox.com.ar)
*/  
?>
<?php 
	if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
		die ('Please do not load this page directly. Thanks!');

	if (!empty($post->post_password)) { // if there's a password
		if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
			?>

			<p>This post is password protected. Enter the password to view comments.</p>

			<?php
			return;
		}
	}

?>
<?php 
$options = array( 'walker'  => null,
    'max_depth'         => '',
    'style'             => 'ol',
    'callback'          => null,
    'end-callback'      => null,
    'type'              => 'all',
    'page'              => '',
    'per_page'          => '',
    'avatar_size'       => 50,
    'reverse_top_level' => true,
    'reverse_children'  =>  '');
?>
<?php if ( have_comments() ) : ?>
<div class="separator"></div>
<h3><?php comments_number('No Comments', 'One Comment', '% Comments' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>
<ol class="commentlist"> 
<?php 
     wp_list_comments($options); 	 
?>
</ol>
<div class="separator"></div>
<?php paginate_comments_links(); ?>
<div class="separator"></div>    
<?php endif; ?>    




<?php
$options = array(
	'title_reply'          => __( 'Leave your Comment' ),
	'title_reply_to'       => __( 'Leave a Reply to %s' ),
	'cancel_reply_link'    => __( 'Cancel reply' ),
	'label_submit'         => __( 'Submit' ),
); 
comment_form($options,$post->ID); 
?>

