Vulcan/client/views/posts/modules/post_commenters.html

9 lines
220 B
HTML
Raw Normal View History

2014-12-14 15:15:34 +09:00
<template name="postCommenters">
<div class="post-commenters">
{{#each commenters}}
<a href="{{profileUrl this}}">
{{> avatar userId=this shape="circle"}}
</a>
{{/each}}
</div>
</template>