blob: 653570d1b792739c49bbc8e54a0bea941ef10fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" type="text/css" href="/static/style.css">
<script src="/static/htmx.min.js"></script>
<title>{{block "title" .}}{{end}} - docspace</title>
</head>
<body>
{{block "nav" .}}{{end}}
<div class="content">
{{block "content" .}}
{{end}}
</div>
</body>
</html>
|