mercury/web/frontend/app.html

16 lines
424 B
HTML
Raw Normal View History

2023-09-03 04:11:56 +02:00
<!doctype html>
2023-09-15 16:33:08 +02:00
<html lang="en" class="dark">
2023-09-03 04:11:56 +02:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{.Config.Name}}</title>
2023-09-03 00:23:48 +02:00
2023-09-03 04:11:56 +02:00
{{.Vue.RenderTags}}
</head>
2023-09-15 16:33:08 +02:00
<body class="bg-background-200 dark:bg-background-900 text-textLight dark:text-textDark">
2023-09-03 04:11:56 +02:00
<div id="app"></div>
<script type="text/json" id="accountData">{{.AccountData}}</script>
2023-09-03 04:11:56 +02:00
</body>
2023-09-03 00:23:48 +02:00
</html>