doksie/page.html

18 lines
322 B
HTML
Raw Permalink Normal View History

2024-12-27 20:16:04 +02:00
<!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>