Basic Comments
<?php
if ( post_password_required() )
return;
?>
<div id="comments" class="comments-area">
<?php if ( comments_open() && get_comments_number() ): ?>
<?php if ( have_comments() ) : ?>
<ul class="commentlist">
<?php wp_list_comments(); ?>
</ul>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<nav class="comment-navigation">
<div class="nav-previous"><?php previous_comments_link(); ?></div>
<div class="nav-next"><?php next_comments_link(); ?></div>
</nav>
<?php endif; ?>
<?php endif; ?>
<?php comment_form(); ?>
<?php endif; ?>
</div>