Vulcan/packages/nova-posts/lib/client/templates/modules/post_avatars.html
2016-02-17 14:27:27 +09:00

16 lines
624 B
HTML

<template name="post_avatars">
<div class="post-avatars {{moduleClass}}" 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>