about summary refs log tree commit diff stats
path: root/frontend/templates/index.gotmpl
blob: d5046e160dc6b738bf618b8c4d7e4e7b8885beae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!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>
      <h1>Searchix</h1>
      <p>Search Nix Packages and options from NixOS, Darwin and Home-Manager</p>
      <nav>
        <a href="/">Home</a>
      </nav>
    </header>
    <main>
      <label for="query">Search </label>
      <form id="search" action="/options/results">
        <input id="query" name="query" type="search" value="{{ .Query }}" />
        <button>Search</button>
      </form>
      <div id="results">{{ block "results" . }}{{ end }}</div>
    </main>
    <footer>Made by <a href="https://alanpearce.eu">Alan Pearce</a></footer>
    <script src="/static/search.js" defer></script>
    {{ .LiveReload }}
  </body>
</html>