diff options
Diffstat (limited to 'default.template')
-rw-r--r-- | default.template | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/default.template b/default.template new file mode 100644 index 0000000..1e08cb6 --- /dev/null +++ b/default.template | |||
@@ -0,0 +1,69 @@ | |||
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 {font-family: sans-serif;} | ||
11 | |||
12 | body { | ||
13 | background-color: black; | ||
14 | color: white !important; | ||
15 | } | ||
16 | |||
17 | pre { | ||
18 | background-color: #cc00ff; | ||
19 | overflow: auto; | ||
20 | width: 42%; | ||
21 | } | ||
22 | |||
23 | menu { | ||
24 | list-style-type: none; | ||
25 | } | ||
26 | |||
27 | .contentBox { | ||
28 | overflow-y: auto; | ||
29 | overflow-x: hidden; | ||
30 | } | ||
31 | </style> | ||
32 | </head> | ||
33 | <body bgcolor="black" text="white" alink="red" link="yellow" vlink="blue"> | ||
34 | <table> | ||
35 | <tr> | ||
36 | <td><img src="Connie_click-me.gif" alt="alt text" title="Not (Yet) (Another / A) Wiki."/></td> | ||
37 | <td>site top menu plus login and register buttons.</td> | ||
38 | </tr> | ||
39 | <td rowspan=0 style="background-color: rebeccapurple; text-align:left; white-space:nowrap; vertical-align:top"> | ||
40 | menu for the current directory | ||
41 | $menu$ | ||
42 | </td> | ||
43 | <td style="background-color: rebeccapurple"> | ||
44 | $webtrail$ for this page | ||
45 | </td> | ||
46 | </tr> | ||
47 | <tr> | ||
48 | <td> | ||
49 | <main class="contentBox"> | ||
50 | <div name="contentFrame"> | ||
51 | <h1>$pagetitle$</h1> | ||
52 | Author: $author$ | ||
53 | $body$ | ||
54 | </div> | ||
55 | </main> | ||
56 | </td> | ||
57 | </tr> | ||
58 | <tr> | ||
59 | <td style="background-color: rebeccapurple"> | ||
60 | <p>Web site <a href="$feedatom$">atom feed</a>, <a href="$history$">history</a>, and <a href="$sourcecode$">source code</a> Powered by <a href="https://sledjhamr.org/cgit/notYetAnotherWiki/about/">notYetAnotherWiki</a> Version -0.1.</p> | ||
61 | </td> | ||
62 | </tr> | ||
63 | <tr> | ||
64 | <td> | ||
65 | </td> | ||
66 | </tr> | ||
67 | </table> | ||
68 | </body> | ||
69 | </html> | ||