about summary refs log tree commit diff stats
path: root/frontend/templates/blocks/search.gotmpl
blob: e9d69b67745217da7cf69f5d2bb29d7be5fa11ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{- template "main" . }}
{{- template "js" . }}

{{- define "main" }}
  <form id="search" action="results">
    <label for="query">{{ .Source.Name }} option search</label>
    <fieldset>
      <input id="query" name="query" type="search" value="{{ .Query }}" />
      <button>Search</button>
    </fieldset>
  </form>
  {{- if .Results }}
    {{ block "results" . }}{{ end }}
  {{- end }}
{{- end }}

{{- define "js" }}
  <script src="/static/search.js" defer></script>
{{- end }}