<a name="comments" class="cleanlink"></a>
{% if article.comments_count > 0 %}
{% for comment in article.comments %}
<a name="comment-{{ comment.id }}" class="cleanlink"></a>
<div class="comment-box">
<h3 class="title">{{ comment.author }}</h3>
<div class="comment-info">
{% if comment.author_url != 'http://' %}
<a href="{{ comment.author_url }}" class="external-link">HOMEPAGE</a> |
{% endif %}
{{ comment.created_at | format_date: 'mdy', true }} at {{ comment.created_at | format_date: 'time_only' }}
</div>
<div class="comment {{ comment.presentation_class }}">
<div class="tl"><div class="tr"><div class="br"><div class="bl">
<div class="comment-vertspacer"></div>
<div class="content">
<span class="gravatar">{{ comment | gravatar: 35 }}</span>
{{ comment.body }}
</div>
<div class="comment-links-box"><span class="comment-links"></span></div>
</div></div></div></div>
</div>
</div>
{% endfor %}
{% endif %}
{% if article.accept_comments %}
<h2 id="respond">Leave a Comment</h2>
{% commentform %}
<table class="formTable commentFormTable">
<tr>
<th>Name</th>
<td>{{ form.name }} <small>(required)</small></td>
</tr>
<tr>
<th>Email</th>
<td>{{ form.email }} <small>(will not be published)</small></td>
</tr>
<tr>
<th>Website</th>
<td>{{ form.url }}</td>
</tr>
<tr>
<th>Comment</th>
<td><textarea name="comment[body]" id="comment">{{ submitted.body }}</textarea></td>
</tr>
<tr>
<th></th>
<td>
<input type="submit" name="submit" id="submit" value="Submit Comment" />
<input type="submit" name="comment[preview]" value="Preview" />
</td>
</tr>
</table>
{% endcommentform %}
{% endif %}