aboutsummaryrefslogtreecommitdiff
path: root/search/search.html
blob: e2e24f5e8abe1778e54e1cfc2b3002ba8c722473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "search" }}
<form action="/search/" method="post">
	<input class="fullwidth" type="text" placeholder="Enter your search terms here" name="query" value="{{ .Query }}" minlength="3" maxlength="64" required autofocus><br>
	<input type="checkbox" id="searchTitle" name="searchTitle" value="true"{{ if .SearchTitle }} checked{{ end }}><label for="searchTitle">Titles</label>
	<input type="checkbox" id="searchTags" name="searchTags" value="true"{{ if .SearchTags }} checked{{ end }}><label for="searchTags">Tags</label>
	<input type="checkbox" id="searchDescription" name="searchDescription" value="true"{{ if .SearchDescription }} checked{{ end }}><label for="searchDescription">Descriptions</label>
	<input type="checkbox" id="searchContent" name="searchContent" value="true"{{ if .SearchContent }} checked{{ end }}><label for="searchContent">Contents</label>
	<input type="submit" value="Search">
</form>
<ul>
	{{ range .Results }}
	<li><a href="{{ .Permalink }}">{{ .Title }}</a> : {{ .Description }}</li>
	{{ end }}
</ul>
{{ end }}