15 lines
424 B
HTML
15 lines
424 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{.Config.Name}}</title>
|
|
|
|
{{.Vue.RenderTags}}
|
|
</head>
|
|
<body class="bg-background-200 dark:bg-background-900 text-textLight dark:text-textDark">
|
|
<div id="app"></div>
|
|
|
|
<script type="text/json" id="accountData">{{.AccountData}}</script>
|
|
</body>
|
|
</html>
|