Files
ersatztv/web/index.html
T
2026-07-02 18:36:56 +02:00

28 lines
738 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ChicoryTV</title>
<script>
(() => {
try {
const theme = window.localStorage.getItem('ctv-theme');
if (theme === 'cool' || theme === 'dual') {
document.documentElement.dataset.theme = theme;
} else {
document.documentElement.removeAttribute('data-theme');
}
} catch {
document.documentElement.removeAttribute('data-theme');
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>