aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/menu.template
blob: 7cf0ba25856f9b1ddcbb118d31e8dfd0ce8bf9d5 (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
40
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="generator" contents="lcmark">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
    <title>$pagetitle$</title>
    <link rel="icon" type="image/png" href="$favicon$" />
    <style>
html {
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.menuBox {
  position: fixed;
  height: 100%;
  width: 10%;
}

menu {
  list-style-type: none;
  padding: 5px;
}

    </style>
  </head>
  <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple">
    <nav class="menuBox">
    $body$
    </nav>
  </body>
</html>