noxz-sites

A collection of a builder and various scripts creating the noxz.tech sites
git clone https://noxz.tech/git/noxz-sites.git
Log | Files | README | LICENSE

config/main.html
1<!doctype html>
2<html lang="en">
3<head>
4	<meta charset="utf-8">
5	<meta name="author" content="{:author:}">
6	<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
7	<meta http-equiv="Pragma" content="no-cache"/>
8	<meta http-equiv="Expires" content="0"/>
9	<meta name="viewport" content="width=device-width, initial-scale=1">
10	<title>{:title:}</title>
11	<link rel="icon" type="image/png" href="{:favicon:}"/>
12	<link rel="stylesheet" type="text/css" href="{:stylesheet:}">
13</head>
14<body>
15	<div id="header">
16		<div>
17		<a id="header-logo" href="//noxz.tech/"><img src="{:logo:}" alt="logo"/></a>
18		<a id="header-link" href="//noxz.tech/">{:main_title:}</a>
19		<a id="header-source" href="//noxz.tech/git">source</a>
20		</div>
21	</div>
22	<hr class="hidden-ruler"/>
23	<div id="content">
24		<div>
25		<table>
26			<tr>
27				<td id="nav" valign="top">
28					<input type="checkbox" id="hamburger">
29					<label for="hamburger"></label>
30					<div id="burger-wrapper">
31						{:menu:}
32						{:menu_extra:}
33					</div>
34				</td>
35				<td id="main" valign="top">
36					{:content:}
37				</td>
38			</tr>
39		</table>
40		</div>
41	</div>
42	<hr class="hidden-ruler"/>
43	<div id="footer" data-date="{:year:}">
44		<div>
45		<span class="right">
46			Copyright &copy; 2006-{:year:} Chris Noxz
47			&bull; <a href="//noxz.tech/about/changelog">changelog</a>
48			&bull; <a href="//noxz.tech/about/copying_policy">copying policy</a>
49			&bull; <a href="//noxz.tech/git">source</a>
50		</span>
51		</div>
52	</div>
53</body>
54</html>