ConceptPortal-public/rsconcept/frontend/public/index.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2023-07-15 17:46:19 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Веб-приложение для работы с концептуальными схемами" />
<link rel="manifest" id="manifest-placeholder" href="%PUBLIC_URL%/manifest.json" />
<title>Концепт Портал</title>
<script>
if (
localStorage.getItem('darkMode') === 'true' ||
localStorage.getItem('color-theme') === 'dark' ||
(!('color-theme' in localStorage) &&
window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
</head>
<body>
<noscript>Включите использование JavaScript для работы с данным веб-приложением.</noscript>
<div id="root"></div>
</body>
</html>