27 lines
886 B
HTML
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>
|