feat: add basic input frontend
Alan Pearce alan@alanpearce.eu
Fri, 03 May 2024 09:04:42 +0200
4 files changed, 24 insertions(+), 4 deletions(-)
M .gitignore → .gitignore
@@ -22,3 +22,4 @@ /.env /.envrc /.pre-commit-config.yaml +/frontend/static/base.css
A frontend/static/style.css
@@ -0,0 +1,7 @@+form { + display: flex; +} + +input[type="search"] { + width: 100%; +}
M frontend/templates/index.tmpl → frontend/templates/index.tmpl
@@ -1,12 +1,24 @@ <!doctype html> <html lang="en-GB"> <head> - <meta charset="UTF-8" /> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Searchix</title> - <link href="/static/style.css" rel="stylesheet"/> + <link href="/static/base.css" rel="stylesheet" /> + <link href="/static/style.css" rel="stylesheet" /> </head> <body> - <h1>Searchix</h1> + <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>