diff options
author | Alan Pearce | 2024-05-12 14:55:02 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-12 15:16:34 +0200 |
commit | 42bcd10f010f884bddb0142c31b526faace24186 (patch) | |
tree | dc78a09af2e34f84ded4cfbfbd1b0f1ba5b15266 /frontend/templates/index.gotmpl | |
parent | f769decb676f26210bd6884d33e84ada5898b17c (diff) | |
download | searchix-42bcd10f010f884bddb0142c31b526faace24186.tar.lz searchix-42bcd10f010f884bddb0142c31b526faace24186.tar.zst searchix-42bcd10f010f884bddb0142c31b526faace24186.zip |
feat: clicking another source re-uses query
Diffstat (limited to 'frontend/templates/index.gotmpl')
-rw-r--r-- | frontend/templates/index.gotmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/templates/index.gotmpl b/frontend/templates/index.gotmpl index c5981b3..dbe182a 100644 --- a/frontend/templates/index.gotmpl +++ b/frontend/templates/index.gotmpl @@ -14,9 +14,10 @@ {{- range $key, $value := .Sources }} <a {{ if eq $.Source.Name $value.Name }}class="current"{{ end }} - href="/options/{{ $key }}/search" - >{{ $value.Name }}</a + href="/options/{{ $key }}/search{{ and $.Query (printf "?query=%s" $.Query) }}" > + {{- $value.Name -}} + </a> {{- end }} </nav> </header> |