File: /home/c1190199/public_html/wp-content/themes/directory/Templates/comments.php
{if $post->hasOpenComments}
{ifset $themeOptions->advertising->showBox3}
<div id="advertising-box-3" class="advertising-box">
{!$themeOptions->advertising->box3Content}
</div>
{/ifset}
{/if}
{ifset $closeable}
<div class="closeable">
<div class="open-button {if $defaultState == 'opened'}comments-opened{else}comments-closed{/if}">
<span class="close-comments-text" {if $defaultState == 'opened'}{else}style="display: none;"{/if}>{__ "Close Comments"}</span>
<span class="show-comments-text" {if $defaultState == 'opened'}style="display: none;"{/if}>{__ "Show Comments"}</span>
</div>
{/ifset}
<div id="comments">
{if !$post->isPasswordRequired}
{if $post->comments}
<h2 id="comments-title">
{_n 'Comment', 'Comments', $post->commentsCount} ({$post->commentsCount})
</h2>
{include snippets/comments-pagination.php, location => 'above'}
{listComments comments => $post->comments}
{if $comment->type == 'pingback' or $comment->type == 'trackback'}
<li class="post pingback">
<p>
{__ 'Pingback'}
{!$comment->author->link}
{editCommentLink $comment->id}
</p>
{else}
<li class="{$comment->classes}">
<article id="comment-{$comment->id}" class="comment">
<div class="left controls clearfix">
<div class="comment-avatar">{!$comment->author->avatar}</div>
</div>
<div class="body clearfix">
<div class="arrow left"><!-- --></div>
<div class="content ">
<div>
<span class="author vcard"><cite class="fn">{!$comment->author->nameWithLink}</cite></span><span class="eh"> | </span><span class="date"><a href="{$comment->url}" class="comment-date"><time pubdate datetime="{$comment->date|date:'c'}">{date $comment->date} {_x 'at', 'comment publish time'} {date $comment->date, 'time'}</time></a></span>
<div class="reply">
{capture $replyTitle} {!__ 'Reply <span>↓</span>'} {/capture}
{commentReplyLink $replyTitle, $comment->args, $comment->depth, $comment->id}
</div>
{editCommentLink $comment->id}
</div>
{if !$comment->approved}
<em class="comment-awaiting-moderation">{__ 'Your comment is awaiting moderation.'}</em><br>
{/if}
{!$comment->content}
</div>
</div>
</article>
{/if}
{/listComments}
{include snippets/comments-pagination.php, location => 'below'}
{elseif !$post->hasOpenComments && $post->type != 'page' && $post->hasSupportFor('comments')}
<p class="nocomments">{__ 'Comments are closed.'}</p>
{/if}
{commentForm}
{else}
<p class="nopassword">{__ 'This post is password protected. Enter the password to view any comments.'}</p>
{/if}
</div><!-- #comments -->
{ifset $closeable}
</div> <!-- /.closeable -->
{/ifset}