Files
ledger-quicknote/templates/layouts/base.html
2022-10-20 11:20:24 +08:00

13 lines
275 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>
{{ block "main" . }}
{{ end }}
</body>
</html>