treebird/templates/account_item.tt
nekobit 6534dd27aa Accounts and accounts item template
FossilOrigin-Name: 248b2707f4670077651f40f93bb928b75e70ec33789025d0ef8fe239f7858bc8
2022-08-13 05:56:43 +00:00

20 lines
590 B
Plaintext

<table class="account-stub">
<tr>
<td class="pfp-td">
<a href="/@[% account.acct %]"><img src="[% account.avatar %]"></a>
</td>
<td class="account-stub-info-wrapper">
<div class="account-stub-info">
<a href="/@[% account.acct %]">
<div class="account-stub-top">
<span class="username">[% format_username(account.display_name) %]</span>
</div>
<div class="account-stub-bottom">
<span class="instance-info">@[% account.acct %]</span>
</div>
</a>
</div>
</td>
</tr>
</table>