My personal website
https://www.adyxax.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
1.0 KiB
15 lines
1.0 KiB
{{ 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 }}
|
|
|