2015-05-18 10:30:08 +09:00
|
|
|
<template name="post_avatars">
|
2015-07-20 10:11:55 +09:00
|
|
|
<div class="post-avatars {{moduleClass}}" aria-hidden="true" aria-live="off">
|
2015-07-11 12:26:02 +02:00
|
|
|
<a href="{{getProfileUrl userId}}" title="{{getDisplayName userId}}" class="avatar-link avatar-small author-avatar">
|
2015-04-07 09:48:06 -05:00
|
|
|
{{> avatar userId=userId shape="circle"}}
|
|
|
|
</a>
|
|
|
|
{{#if commenters}}
|
|
|
|
<div class="post-commenters">
|
|
|
|
{{#each commenters}}
|
2015-07-11 12:26:02 +02:00
|
|
|
<a href="{{getProfileUrl this}}" title="{{getDisplayName this}}" class="avatar-link avatar-small commenter-avatar">
|
2015-04-07 09:48:06 -05:00
|
|
|
{{> avatar userId=this shape="circle"}}
|
|
|
|
</a>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2015-07-11 12:26:02 +02:00
|
|
|
</template>
|