Vulcan/client/views/posts/modules/post_avatars.html
2014-12-16 13:34:01 +09:00

14 lines
No EOL
437 B
HTML

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