mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
45 lines
1.9 KiB
HTML
45 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta
|
|
name="description"
|
|
content="Разработка концептуальных схем. Библиотека концептуальных схем и предметных моделей"
|
|
/>
|
|
<meta name="google-site-verification" content="bodB0xvBD_xM-VHg7EgfTf87jEMBF1DriZKdrZjwW1k" />
|
|
<meta name="yandex-verification" content="2b1f1f721cd6b66a" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fira+Code:wght@300..700&family=Noto+Sans+Math&family=Noto+Sans+Symbols+2&family=Alegreya+Sans+SC:wght@100;300;400;500;700;800;900&family=Noto+Color+Emoji"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<title>Концепт Портал</title>
|
|
|
|
<!-- <script src="https://unpkg.com/react-scan/dist/auto.global.js"></script> -->
|
|
<script>
|
|
let isDark = false;
|
|
if ('portal.theme.dark' in localStorage) {
|
|
isDark = localStorage.getItem('portal.theme.dark') === 'true';
|
|
} else if (window.matchMedia) {
|
|
isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
localStorage.setItem('portal.theme.dark', isDark ? 'true' : 'false');
|
|
}
|
|
if (isDark) {
|
|
document.documentElement.classList.add('dark');
|
|
} else {
|
|
document.documentElement.classList.remove('dark');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|