Files
ledger-quicknote/templates/layouts/base.html
2022-11-04 22:45:57 +08:00

18 lines
388 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ block "title" . }}Ledger Quick Note{{ end }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<nav>
{{ with .User }}
{{ .Email }}
{{ end }}
</nav>
{{ block "main" .Data }}
{{ end }}
</body>
</html>