cal/tmpl/base.html

17 lines
439 B
HTML
Raw Normal View History

2024-08-05 19:26:04 +00:00
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{template "title" .}}</title>
{{template "meta" .}}
<link rel="stylesheet" href="/static/vars.css">
<link rel="stylesheet" href="/static/smol.css">
</head>
<body>
{{template "body" .}}
</body>
</html>
{{end}}