Vulcan/packages/telescope-posts/lib/client/templates/modules/post_avatars.html

16 lines
587 B
HTML

<template name="post_avatars">
<div aria-hidden="true" aria-live="off">
<a href="{{getProfileUrl userId}}" title="{{getDisplayName 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}}" title="{{getDisplayName this}}" class="avatar-link avatar-small commenter-avatar">
{{> avatar userId=this shape="circle"}}
</a>
{{/each}}
</div>
{{/if}}
</div>
</template>