summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 9191892ec09ce7f5c610abf81b9c4da37d7904f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "title"}}Index{{end}}
{{define "content"}}
	<form action="/search" method="get">
		<input id="term" name="term" type="text" placeholder="search" required>
		<select id="lang" name="lang">
			{{range .Langs}}
				<option> {{.}}</option>
			{{end}}
		</select>
		<select id="order" name="order">
			{{range .Orders}}
				<option>{{.}}</option>
			{{end}}
		</select>
	</form>
{{end}}