seitime-frappe/frappe/templates/includes/comments/comment.html
2015-03-10 17:14:37 +05:30

16 lines
590 B
HTML

<div class="blog-comment-row">
<div class="inline-block" style="vertical-align: top">
<div class="avatar avatar-medium" style="margin-top: 11px;">
<img itemprop="thumbnailUrl" src="{{ frappe.get_gravatar(comment.comment_by) }}" />
</div>
</div>
<div class="inline-block" style="width: calc(100% - 100px)">
<h4 itemprop="name">{{ comment.comment_by_fullname }}
<br>
<small class="text-muted">
<span itemprop="commentTime">{{ comment.creation|global_date_format }}</span>
</small>
</h4>
<div itemprop="commentText">{{ comment.comment|markdown }}</div>
</div>
</div>