summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 434a34f22f195853954541f1a96c5bbd63807d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
{{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>
	</form>
{{end}}