mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
12 lines
No EOL
361 B
HTML
12 lines
No EOL
361 B
HTML
<template name="postCommenters">
|
|
<div class="post-commenters">
|
|
<a href="{{profileUrl userId}}" class="author-avatar">
|
|
{{> avatar userId=userId shape="circle"}}
|
|
</a>
|
|
{{#each commenters}}
|
|
<a href="{{profileUrl this}}" class="commenter-avatar">
|
|
{{> avatar userId=this shape="circle"}}
|
|
</a>
|
|
{{/each}}
|
|
</div>
|
|
</template> |