Vulcan/packages/telescope-posts/lib/client/templates/modules/post_avatars.html
2015-05-18 10:30:08 +09:00

16 lines
No EOL
520 B
HTML

<template name="post_avatars">
<div aria-hidden="true" aria-live="off">
<a href="{{getProfileUrl userId}}" class="avatar-link avatar-small author-avatar">
{{> avatar userId=userId shape="circle"}}
</a>
{{#if commenters}}
<div class="post-commenters">
{{#each commenters}}
<a href="{{getProfileUrl this}}" class="avatar-link avatar-small commenter-avatar">
{{> avatar userId=this shape="circle"}}
</a>
{{/each}}
</div>
{{/if}}
</div>
</template>