15 lines
574 B
HTML
15 lines
574 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.sender) }}" />
|
|
</div>
|
|
</div>
|
|
<div class="inline-block" style="width: calc(100% - 50px)">
|
|
<h6 itemprop="name">{{ comment.sender_full_name }}
|
|
<span class="text-muted pull-right" itemprop="commentTime">
|
|
{{ comment.creation|global_date_format }}
|
|
</span>
|
|
</h6>
|
|
<div itemprop="commentText">{{ comment.content|markdown }}</div>
|
|
</div>
|
|
</div>
|