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.
27 lines
625 B
Cheetah
27 lines
625 B
Cheetah
{{with .Data}}
|
|
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
|
|
<h1>Search {{EmojiFilter (HTML .User.DisplayName) .User.Emojis | Raw}} @{{.User.Acct}}'s statuses</h1>
|
|
|
|
<form action="/usersearch/{{.User.ID}}" method="GET">
|
|
<p>
|
|
<label>
|
|
Query <input type="text" name="q" value="{{.Q}}">
|
|
</label>
|
|
<button type="submit"> Search </button>
|
|
</p>
|
|
</form>
|
|
|
|
{{range .Statuses}}
|
|
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
|
{{else}}
|
|
{{if .Q}}<p>No data found</p>{{end}}
|
|
{{end}}
|
|
|
|
<nav class="pagination">
|
|
{{if .NextLink}}
|
|
<a href="{{.NextLink}}">[next]</a>
|
|
{{end}}
|
|
</nav>
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|