22 lines
723 B
Go Template
22 lines
723 B
Go Template
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/{{ .VERSION }}/main.css">
|
|
<script type="text/javascript">
|
|
function showError(err) {
|
|
console.error(err)
|
|
alert(err)
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app">{{ block "page" . }}{{ end }}</div>
|
|
</body>
|
|
</html>
|