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

12 lines
No EOL
361 B
HTML

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