aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/menu.template
diff options
context:
space:
mode:
Diffstat (limited to 'menu.template')
-rw-r--r--menu.template40
1 files changed, 40 insertions, 0 deletions
diff --git a/menu.template b/menu.template
new file mode 100644
index 0000000..7cf0ba2
--- /dev/null
+++ b/menu.template
@@ -0,0 +1,40 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="generator" contents="lcmark">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
7 <title>$pagetitle$</title>
8 <link rel="icon" type="image/png" href="$favicon$" />
9 <style>
10html {
11 font-family: sans-serif;
12}
13
14* {
15 box-sizing: border-box;
16}
17
18body {
19 margin: 0;
20}
21
22.menuBox {
23 position: fixed;
24 height: 100%;
25 width: 10%;
26}
27
28menu {
29 list-style-type: none;
30 padding: 5px;
31}
32
33 </style>
34 </head>
35 <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple">
36 <nav class="menuBox">
37 $body$
38 </nav>
39 </body>
40</html>