28 lines
504 B
Go Template
28 lines
504 B
Go Template
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<link rel="stylesheet" type="text/css" href="/css/{{ .Data.VERSION }}/index.css">
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"@mbus": "/js/{{ .Data.VERSION }}/mbus.mjs"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
window._VERSION = "{{ .Data.VERSION }}"
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" class="page-{{ .PAGE }}">
|
|
{{ block "page" . }}{{ end }}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|