18 lines
388 B
HTML
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>
|