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