1
0
forked from mixa/67
Files
67/apps/web/index.html
2026-06-22 20:13:14 +03:00

27 lines
886 B
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Медиапортал ДГТУ: новости, исследования, события и университетская жизнь."
/>
<meta name="theme-color" content="#f5f2ea" />
<title>ДГТУ МЕДИА</title>
<script>
(() => {
const savedTheme = localStorage.getItem("theme");
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
if (savedTheme === "dark" || (!savedTheme && prefersDark)) {
document.documentElement.classList.add("dark");
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>