summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 9128b2e8566ea4c4d36c41875a2ecdb3af337bb6 (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="/styles/main.css">
  {{.ImportMapTag}}
  {{- range .ComponentScripts}}
  <script type="module" src="{{.}}"></script>
  {{- end}}
</head>
<body>
  <main>
    {{.Content}}
  </main>
</body>
</html>