aboutsummaryrefslogtreecommitdiff
path: root/templates/search.tmpl
blob: b4cd74422093263478d7c62ff4a4af3d3d35894c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
<div class="page-title"> Search </div>

<div>
	<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>
</div>

{{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 .HasNext}}
		<a href="{{.NextLink}}">next</a>
	{{end}}
</div>

{{template "footer.tmpl"}}
{{end}}