mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-01 02:57:17 +00:00
39 lines
1 KiB
Cheetah
39 lines
1 KiB
Cheetah
{{with .Data}}
|
|
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
|
|
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
|
|
<div class="page-title"> Search </div>
|
|
|
|
<form class="search-form" action="/search" method="GET">
|
|
<span class="post-form-field>
|
|
<label for="query"> Query </label>
|
|
<input id="query" name="q" value="{{.Q}}">
|
|
</span>
|
|
<span class="post-form-field>
|
|
<label for="type"> Type </label>
|
|
<select id="type" name="type">
|
|
<option value="statuses" {{if eq .Type "statuses"}}selected{{end}}>Statuses</option>
|
|
<option value="accounts" {{if eq .Type "accounts"}}selected{{end}}>Accounts</option>
|
|
</select>
|
|
</span>
|
|
<button type="submit"> Search </button>
|
|
</form>
|
|
|
|
{{if eq .Type "statuses"}}
|
|
{{range .Statuses}}
|
|
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
|
{{end}}
|
|
|
|
{{end}}
|
|
{{if eq .Type "accounts"}}
|
|
{{template "userlist.tmpl" (WithContext .Users $.Ctx)}}
|
|
{{end}}
|
|
|
|
<div class="pagination">
|
|
{{if .NextLink}}
|
|
<a href="{{.NextLink}}">next</a>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|