blob: f762f5272d717dddfefa454b9fa244da4b25cad7 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE html>
<!--Routes using this template:
/
/edit
-->
<head>
<title>utab</title>
</head>
<body>
<h2>Search</h2>
<div id="search">
<form action="/search" method="GET">
<input
class="form-input"
name="q"
type="text"
placeholder="[/<engine>] <query>"
/>
<input class="form-button" type="submit" value="Search" />
</form>
</div>
<h2>%site_heading%</h2>
<div id="sites">
%sites%
</div>
<footer class="ctrl">
<a href="/">
<img class="ctrl-icon" src="/icons/home.svg" />
</a>
<a href="/new">
<img class="ctrl-icon" src="/icons/plus.svg" />
</a>
<a href="/edit">
<img class="ctrl-icon" src="/icons/pencil.svg" />
</a>
</footer>
<link rel="stylesheet" type="text/css" href="/css/index.css" />
</body>
|