-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
executable file
·48 lines (38 loc) · 1.45 KB
/
results.html
File metadata and controls
executable file
·48 lines (38 loc) · 1.45 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!-- frontend to tag searcher -->
<!DOCTYPE html>
<head>
<title>{sitename}</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/css/results-wide.css" type="text/css">
<link rel="apple-touch-icon" sizes="180x180" href="static/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/favicons/favicon-16x16.png">
<link rel="manifest" href="static/favicons/site.webmanifest">
<link rel="mask-icon" href="static/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<h1 style="text-align: center;">{sitename}</h1>
<div class="searchdiv">
<div class="searchwrapper">
<form class="example" method="get" action="">
<input class="searchbar" type="text" placeholder="search whatever" name="query">
<button type="submit" class="searchbutton">submit</button>
</form>
</div>
</div>
<div class="number-of-results">
{numberofitems}
</div>
<div class="results">
{results}
</div>
</body>
<p class="footer">
<a href="/">Search</a>
<a href="/add">Upload</a>
<a href="/about">About</a>
</p>
</html>