Vulcan/client/views/posts/modules/post_commenters.html
2014-12-14 15:15:34 +09:00

9 lines
No EOL
220 B
HTML

<template name="postCommenters">
<div class="post-commenters">
{{#each commenters}}
<a href="{{profileUrl this}}">
{{> avatar userId=this shape="circle"}}
</a>
{{/each}}
</div>
</template>