<?php if ( post_password_required() ) : ?>
		<p class="no comments"><?php _e('This post is password protected. Enter the password to view comments.', 'greenhope'); ?></p>
<?php return;
endif;
?>
<!-- You can start editing here. -->
<?php if ( have_comments() ) : ?>
<h3 id="comments_title"><a href="#respond"><?php _e('Add a comment', 'greenhope'); ?> &raquo;</a><?php comments_number(__('No comment' ,'greenhope'), __('One comment' ,'greenhope'),__('% comments' ,'greenhope'));?><?php _e(' to this article', 'greenhope'); ?></h3>
<ol class="commentlist">
	<?php wp_list_comments(array ('callback' => 'greenhope_comment')); ?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
<div class="navigation group">
	<div class="alignleft"><?php previous_comments_link() ?></div>
	<div class="alignright"><?php next_comments_link() ?></div>
</div>
<?php endif; ?>
<?php elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
		<p class="nocomments"><?php _e( 'Comments are closed.', 'greenhope' ); ?></p>
<?php endif; ?>
<?php $comment_form_args = array(
	'comment_notes_after'	=>	'',
	'title_reply'			=>	'',
	'comment_notes_before'	=>	'',
	'comment_field'			=>	'<p class="comment-form-comment"><textarea name="comment" id="comment" cols="100%" rows="8" tabindex="4" onkeydown="if(event.ctrlKey){if(event.keyCode==13){document.getElementById(\'submit\').click();return false}};"></textarea></p>',
	'label_submit'			=>	__( 'Submit' ));
	comment_form($comment_form_args);
?>