all repos — searchix @ 27b07a80f1872205dfeb949e9b90cf85f6e43744

Search engine for NixOS, nix-darwin, home-manager and NUR users

refactor: move general results template code into results template

Alan Pearce
commit

27b07a80f1872205dfeb949e9b90cf85f6e43744

parent

a5e758d41c151c17ed03b39454470ba8dd0c3b99

1 file changed, 23 insertions(+), 0 deletions(-)

changed files
A frontend/templates/blocks/results.gotmpl
@@ -0,0 +1,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 }}