<!doctype html> <html lang="en-GB"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Searchix</title> <link href="/static/base.css" rel="stylesheet" /> <link href="/static/style.css" rel="stylesheet" /> </head> <body> <header> <nav> <h1><a href="/">Searchix</a></h1> {{- range $key, $value := .Sources }} <a {{ if eq $.Source.Name $value.Name }}class="current"{{ end }} href="/options/{{ $key }}/search" >{{ $value.Name }}</a > {{- end }} </nav> </header> <main> {{ block "main" . }} <p> Search Nix Packages and options from NixOS, Darwin and Home-Manager </p> <a href="https://git.sr.ht/~alanpearce/searchix">Source code</a> {{ end }} </main> <footer> Made by <a href="https://alanpearce.eu">Alan Pearce</a>. <a href="https://todo.sr.ht/~alanpearce/searchix">Report issues</a> </footer> {{ block "js" . }} {{ end }} {{ .LiveReload }} </body> </html>