diff options
author | Alan Pearce | 2024-05-09 19:36:03 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-09 19:36:03 +0200 |
commit | 631c02ac689b3366987918737e2b09f52fb16dda (patch) | |
tree | 0ae231c0a1ba2bd1cf255ea260129440056ac509 /frontend | |
parent | f42dfe7b5fd3d60c9558eb520d33c7c8fd1ba201 (diff) | |
download | searchix-631c02ac689b3366987918737e2b09f52fb16dda.tar.lz searchix-631c02ac689b3366987918737e2b09f52fb16dda.tar.zst searchix-631c02ac689b3366987918737e2b09f52fb16dda.zip |
feat: dynamically link to sources
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/templates/index.gotmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/templates/index.gotmpl b/frontend/templates/index.gotmpl index c94330a..b829a85 100644 --- a/frontend/templates/index.gotmpl +++ b/frontend/templates/index.gotmpl @@ -11,9 +11,9 @@ <header> <nav> <h1><a href="/">Searchix</a></h1> - <a href="/options/nixos/search">NixOS</a> - <a href="/options/darwin/search">Darwin</a> - <a href="/options/home-manager/search">Home Manager</a> + {{- range $key, $value := .Sources }} + <a href="/options/{{ $key }}/search">{{ $value.Name }}</a> + {{- end }} </nav> </header> <main> |