blob: 2ff86e7eb5c7e70a874779b9dd2eb6aee4659387 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/assets/styles/main.css">
<script type="importmap">{ "imports": {} }</script>
{{- range .ComponentScripts}}
<script type="module" src="{{.}}"></script>
{{- end}}
</head>
<body>
<main>
{{.Content}}
</main>
</body>
</html>
|