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

14 lines
No EOL
475 B
HTML

<template name="postAvatars">
<a href="{{profileUrl userId}}" class="avatar-link avatar-small author-avatar" aria-hidden="true">
{{> 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" aria-hidden="true">
{{> avatar userId=this shape="circle"}}
</a>
{{/each}}
</div>
{{/if}}
</template>