diff options
| author | dvs1 | 2024-12-16 13:25:52 +1000 |
|---|---|---|
| committer | dvs1 | 2024-12-16 13:25:52 +1000 |
| commit | 9dd962166a1849a31b25767a81cf269f4b99d4a5 (patch) | |
| tree | f75f63a74441a44280921bb02059d518cb0c180a /menu.template | |
| parent | Again, nope. lol (diff) | |
| download | notYetAnotherWiki-9dd962166a1849a31b25767a81cf269f4b99d4a5.zip notYetAnotherWiki-9dd962166a1849a31b25767a81cf269f4b99d4a5.tar.gz notYetAnotherWiki-9dd962166a1849a31b25767a81cf269f4b99d4a5.tar.bz2 notYetAnotherWiki-9dd962166a1849a31b25767a81cf269f4b99d4a5.tar.xz | |
Commit the test version of the code.
Diffstat (limited to '')
| -rw-r--r-- | menu.template | 40 |
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> | ||
| 10 | html { | ||
| 11 | font-family: sans-serif; | ||
| 12 | } | ||
| 13 | |||
| 14 | * { | ||
| 15 | box-sizing: border-box; | ||
| 16 | } | ||
| 17 | |||
| 18 | body { | ||
| 19 | margin: 0; | ||
| 20 | } | ||
| 21 | |||
| 22 | .menuBox { | ||
| 23 | position: fixed; | ||
| 24 | height: 100%; | ||
| 25 | width: 10%; | ||
| 26 | } | ||
| 27 | |||
| 28 | menu { | ||
| 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> | ||
