0
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ title }}@{{ hostname }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css">
<script src="script.js"></script>
<link rel="icon" href="icons.ico" type="image/x-icon">
<style id="styleCss"></style>
</head>
<body>
<header class="menu" id="search">
<div>
<h3>ManWeb @{{ hostname }}</h3>
</div>
<form class="rounded" method="post">
<input type="text" class="txt" name="q" autocomplete="off" >
<input type="submit" class="submit" value="Search">
</form>
<div class="rounded">
<button onclick="GoToRawQuery('manweb-help.html')">Help</button>
<button onclick="Menu(H(this).l)">Settings</button>
</div>
<script>
document.querySelector('input[name="q"]').value = `{{ query }}`;
</script>
</header>
<header class="settings menu hidden" id="settings">
<div>
<h3>Settings</h3>
</div>
<div>
<h3>Theme</h3>
<div class="rounded">
<button>Dark</button>
<button>Light</button>
<button>Warm</button>
</div>
</div>
<div>
<h3>Contrast</h3>
<div class="rounded">
<button>Low</button>
<button>Medium</button>
<button>High</button>
</div>
</div>
<div>
<h3>Scale</h3>
<div class="rounded">
<button>-</button>
<label id="scaleVal">100%</label>
<button>+</button>
</div>
</div>
<div>
<div class="rounded">
<button onclick="ResetStyle()">Reset</button>
<button onclick="Menu()">Close</button>
</div>
</div>
</header>
<main id="main-content">
{{ content }}
</main>
</body>
</html>