summaryrefslogtreecommitdiff
path: root/example/template.html
blob: 7adfb0e526f08da0eb794a3222145ba637bb087a (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
<!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>