Initial commit

This commit is contained in:
Lauren Toivanen 2024-12-27 20:16:04 +02:00
commit ca00ee623d
Signed by: jt
GPG key ID: 9151B109B73ECAD5
8 changed files with 205 additions and 0 deletions

17
page.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/static/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{.Title}}</title>
</head>
<body>
<div id="nav">
{{.Navigation}}
</div>
<div id="content">
{{.HTML}}
</div>
</body>
</html>