about summary refs log tree commit diff stats
path: root/frontend/templates/index.tmpl
blob: 303d03079deb1544f55883e8204172830db336fd (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
<!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>
    </header>
    <main>
      <label for="query">Search </label>
      <form>
        <input id="query" name="query" type="search" value="" />
        <button>Search</button>
      </form>
    </main>
    {{ .LiveReload }}
  </body>
</html>