go-project-template/web/templates/base.html
Finn 4ebe6c7752 add auth
and some other improvements
2024-07-24 22:13:23 -07:00

21 lines
483 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>{{ block "title" .}}go-project-template{{ end }}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="/static/main.css" />
</head>
<body>
<div id="wrapper">
<div id="main">
{{ block "body" .}}{{ end }}
</div>
<footer>
<code>{{ version }}</code>
</footer>
</div>
</body>
</html>