treebird/static/chat.tmpl
nekobit 434ec2e8bd Chats page
FossilOrigin-Name: 397b4d1c5981fe12defbe8d643a4cc8deba637d3ccbbf465c919fe91ab512d78
2022-07-04 08:46:38 +00:00

21 lines
606 B
Cheetah

<a href="{{%s:prefix}}/chats/{{%s:id}}">
<table class="account-stub">
<tr>
<td class="pfp-td">
<img src="{{%s:avatar}}">
</td>
<td class="account-stub-info-wrapper">
<div class="account-stub-info">
<div class="account-stub-top">
<span class="username">{{%s:display_name}}</span>
<span class="instance-info">@{{%s:acct}}</span>
</div>
<div class="account-stub-bottom">
<span class="chat-msg-preview">{{ %s : last_message }}</span>
</div>
</div>
</td>
</tr>
</table>
</a>