mirror of
https://hk.gh-proxy.com/https://github.com/NodeBB/nodebb-widget-essentials.git
synced 2025-10-03 20:00:59 +08:00
11 lines
No EOL
625 B
Smarty
11 lines
No EOL
625 B
Smarty
<div class="{{{ if sidebar }}}row row-cols-1 px-3 gy-2{{{ else }}}row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5 g-4{{{ end }}} mb-2">
|
|
{{{ each users }}}
|
|
<a href="{config.relative_path}/user/{./userslug}" class="btn btn-ghost d-flex gap-2 ff-secondary align-items-start text-start p-2 ff-base">
|
|
{buildAvatar(@value, "48px", true, "flex-shrink-0")}
|
|
<div class="d-flex flex-column gap-1 text-truncate">
|
|
<div class="fw-semibold text-truncate" title="{./displayname}">{./displayname}</div>
|
|
<div class="text-xs text-muted text-truncate">{formattedNumber(./postcount)}</div>
|
|
</div>
|
|
</a>
|
|
{{{ end }}}
|
|
</div> |