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

12 lines
361 B
HTML
Raw Normal View History

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