path:
/template.html
759 B | 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>$title$</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/assets/style.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>$title$</h1>
<p>$subtitle$</p>
</header>
<nav>
<a href="/"$if(page-about)$ class="active" $endif$>home</a>
<a href="/projects.html"$if(page-projects)$ class="active" $endif$>projects</a>
<a href="/contact.html"$if(page-contact)$ class="active" $endif$>contact</a>
<a class="right" href="https://photos.ctu.cx/">photos</a>
<a class="right" href="https://cgit.ctu.cx/">git</a>
</nav>
<main>
$body$
</main>
<footer><a href="/imprint.html">Imprint</a></footer>
</body>
</html>