searchhut/templates/index.html
2022-07-09 17:02:58 +02:00

31 lines
1,007 B
HTML

{{template "head.html" .}}
<main class="index">
<form action="/search">
<h1>
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"></path></svg>
</span>
<span>searchhut</span>
</h1>
<div class="input-group">
<label for="query">Search terms</label>
<input
type="text"
id="query"
name="query"
placeholder="Search terms..." />
<button type="submit">Search</button>
</div>
<div class="alert">
<strong>Notice!</strong>
This product is experimental and incomplete. User beware!
</div>
</form>
</main>
<footer>
<div class="infolinks">
<a href="/about">About searchhut</a>
<a href="/docs">Documentation</a>
<a href="https://sr.ht/~sircmpwn/searchhut">Source code</a>
</div>
</footer>