brotherton-erpnext/website/templates/html/comment.html

17 lines
533 B
HTML
Raw Normal View History

{#
this template generates comment rows for a blog
it is to be included in the blog/blog.html template
#}
2013-03-11 12:27:57 +00:00
<div itemscope itemtype="http://schema.org/UserComments">
{% for comment in comment_list %}
<div class="comment-row">
<div class="comment-title">
<span itemprop="name" class="author">{{ comment.comment_by_fullname }}</span> /
<span itemprop="commentTime">{{ comment.comment_date }}</span>:
</div>
<p class="comment-content" itemprop="commentText">{{ comment.comment }}</p>
<hr>
</div>
2013-03-11 12:27:57 +00:00
{% endfor %}
</div>