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

16 lines
520 B
HTML
Raw Normal View History

2015-05-18 10:30:08 +09:00
<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>
2014-12-16 13:34:01 +09:00
</template>