mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-29 01:28:24 +00:00
32 lines
762 B
HTML
32 lines
762 B
HTML
<!DOCTYPE html>
|
|
<html class="h-screen" data-theme="dark" dir="ltr" lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>deemix</title>
|
|
|
|
<link href="favicon.ico" rel="shortcut icon" />
|
|
|
|
<meta
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0"
|
|
name="viewport"
|
|
/>
|
|
|
|
<script>
|
|
if (localStorage.getItem("selectedTheme")) {
|
|
document.documentElement.setAttribute(
|
|
"data-theme",
|
|
localStorage.getItem("selectedTheme")
|
|
);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body
|
|
class="w-full h-full overflow-hidden font-sans bg-background-main text-foreground"
|
|
>
|
|
<div id="app"></div>
|
|
</body>
|
|
|
|
<script type="module" src="./src/app.js"></script>
|
|
</html>
|