mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
1d61f1aa27
This uses better color contrast and component spacing to improve legibility. The updated HTML also has better compatibility with browsers with limited/no CSS support.
15 lines
499 B
Cheetah
15 lines
499 B
Cheetah
{{with .Data}}
|
|
<div class="user-list-item">
|
|
<div class="user-list-profile-img">
|
|
<a class="img-link" href="/user/{{.ID}}">
|
|
<img class="status-profile-img" src="{{.Avatar}}" title="@{{.Acct}}" alt="@{{.Acct}}" height="48">
|
|
</a>
|
|
</div>
|
|
<div class="user-list-name">
|
|
<bdi class="status-dname">{{EmojiFilter (HTML .DisplayName) .Emojis | Raw}}</bdi>
|
|
<br>
|
|
<a class="img-link" href="/user/{{.ID}}"><span class="status-uname">@{{.Acct}}</span></a>
|
|
</div>
|
|
<br class="hidden">
|
|
</div>
|
|
{{end}}
|