blob: 8ab94383c8482a22668f6c00c339ecfc33cbda05 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<title>SkunkyArt | Search</title>
<link rel="stylesheet" href="/gui/css/skunky.css">
</head>
<main>
<header>
<h1><a href="/">HOME</a> | <a href="/dd">DD</a></h1>
<form method="get" action="search">
<input type="text" name="q" placeholder="Search for ..." autocomplete="off" autocapitalize="none" spellcheck="false">
<select name="type">
<option value="all">All</option>
<option value="tag">Tag</option>
</select>
<button type="submit">Search!</button>
</form>
</header>
{{if (ne .List "")}}
{{if (ne .Search.Total 0)}}
<h1>Total resuls: {{.Search.Total}}</h1>
{{end}}
{{.List}}
{{else}}
<p>No results :(</p>
{{end}}
</main>
</html>
|