17 lines
439 B
HTML
17 lines
439 B
HTML
{{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}}
|