
<li id="comment_$comment.id">
	{% if comment.status == "denied" %}
	<span class="waiting">${ "Your comment is awaiting moderation." | translate }</span>
	{% endif %}
<div class="perma float-right">
	${ comment.edit_link("Edit" | translate, "") }
	${ comment.delete_link("Delete" | translate, "") }
	${ "<a href=\"%s\" class=\"permalink\">Permalink</a>" | translate | format(comment.post.url ~ "#comment_"~comment.id, comment.created_at | strftime("%B %e, %Y, at %I:%M %p" | translate)) }
</div>
<cite>
	${ "<strong class=\"capitalize\">%s</strong> on %s" | translate | format(comment.author_link, comment.created_at | strftime("%B %e, %Y, at %I:%M %p" | translate)) }
</cite>
<blockquote>
	$comment.body
</blockquote>
<div class="float-right">
    
</div>

</li>