aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/default.template
blob: d32ed1cd9e8a767164b3451d09168fd8896aaf8a (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
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
    <title>$title$</title>
    <link rel="icon" type="image/png" href="$favicon$" />
    <style>
      a:hover {color:red}

      html {font-family: sans-serif;}

      menu {
        list-style-type: none;
      }

      pre {
        background-color: $onefangPurple$;
        overflow-x: auto;
        width: 84vw;
        margin: 1px;
      }

      table,
      td,
      th {
        background-color black;
        border-collapse: collapse;
        border: 1px solid white;
      }

      .contentBox {
      }
      .contentBox a:active  {color: red}
      .contentBox a:link    {color: yellow}
      .contentBox a:visited {color: yellowgreen}
      .contentBox a:hover   {color: red}

      .stuff {
        background-image: linear-gradient($karenPurple$, $onefangPurple$);
        height: 98vh;
        width: 98vw;
        margin: 1;
        line-style: none;
        border-style: none;
        border-spacing: 0;
        border: none;
      }
      .stuffCell {
        height: fit-content;
        border: none;
      }
      .stuffCellBody {
        background-color: black;
        color: white;
        border: none;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
        width: 100%;
        vertical-align: top;
      }
      .stuffCellMenu {
        height: fit-content;
        width: fit-content;
        border: none;
        white-space: nowrap;
        vertical-align: top;
      }
      .stuffCellRight {
        height: fit-content;
        border: none;
        text-align: right;
      }

    </style>
  </head>
  <body bgcolor="black" color="white" text="white" alink="red" link="yellow" vlink="yellowgreen">
    <table class="stuff">
      <header>
        <tr class="stuffCell">
	  <td class="stuffCell"><a href="$home$"><img src="$logo$" alt="Not (Yet) (Another / A) Wiki." title="Not (Yet) (Another / A) Wiki."/></a></td>
            <nav>
	      <td class="stuffCell"><p>&#x1f463; &nbsp; $trail$</p></td>
            </nav>
          </tr>
          <tr class="stuffCell">
          <nav>
	    <td class="stuffCellMenu" rowspan=2>$menu$</td>
	    <td class="stuffCellRight">$header$ &nbsp; plus login and register buttons &nbsp;</td>
          </nav>
        </tr>
      </header>
      <tr class="stuffCell">
	<td class="stuffCellBody">
	  <main class="contentBox">
		$body$
	  </main>
	</td>
      </tr>
      <tr class="stuffCell">
        <footer>
          <td class="stuffCell">$history$</td>
	  <td class="stuffCellRight">$footer$</td>
        </footer>
      </tr>
    </table>
  </body>
</html>