summaryrefslogtreecommitdiff
path: root/example/template.html
blob: d28721e6a13b0e0698c93aa4fdb504a83f1a17f1 (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
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>{{TITLE}}</title>

	<link rel="stylesheet" href="/style.css" type="text/css">
</head>

<body>

	<header>
		<h1><a href="/index.html">~example-site</a></h1>
	</header>

	<nav id="side-bar">
		{{NAV}}
	</nav>

	<article>
	{{CONTENT}}
	</article>

	<footer>
		<p>{{FOOTER}}</p>
	</footer>

</body>
</html>