2014-12-16 13:34:01 +09:00
|
|
|
<template name="postAvatars">
|
2015-02-12 23:44:59 -06:00
|
|
|
<a href="{{profileUrl userId}}" class="avatar-link avatar-small author-avatar" aria-hidden="true">
|
2014-12-16 13:34:01 +09:00
|
|
|
{{> avatar userId=userId shape="circle"}}
|
|
|
|
</a>
|
|
|
|
{{#if commenters}}
|
|
|
|
<div class="post-commenters">
|
|
|
|
{{#each commenters}}
|
2015-02-12 23:44:59 -06:00
|
|
|
<a href="{{profileUrl this}}" class="avatar-link avatar-small commenter-avatar" aria-hidden="true">
|
2014-12-16 13:34:01 +09:00
|
|
|
{{> avatar userId=this shape="circle"}}
|
|
|
|
</a>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</template>
|