mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
16 lines
No EOL
513 B
HTML
16 lines
No EOL
513 B
HTML
<template name="postAvatars">
|
|
<div aria-hidden="true" aria-live="off">
|
|
<a href="{{profileUrl userId}}" class="avatar-link avatar-small author-avatar">
|
|
{{> 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">
|
|
{{> avatar userId=this shape="circle"}}
|
|
</a>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</template> |