about summary refs log tree commit diff stats
path: root/frontend/templates/blocks/results.gotmpl
blob: 95c89cad251e48da852d735fdcf52f5d1289a0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{- define "results" }}
  {{- with .Results }}
    {{- if gt .Total 0 }}
      <section id="results">
        {{ block "hits" .Hits }}
        {{ end }}
        <footer>
          <nav id="pagination">
            {{- with $.Prev }}
              <a class="button" href="{{ . }}" rel="prev">Prev</a>
            {{- end }}
            {{- with $.Next }}
              <a class="button" href="{{ . }}" rel="next">Next</a>
            {{- end }}
          </nav>
          <span>{{ .Total }} results</span>
        </footer>
      </section>
    {{- else }}
      Nothing found
    {{- end }}
  {{- end }}
{{- end }}