-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 970 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="images/logo/favicon-32x32.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta property="og:title" content="Liberty - Full private social-net"/>
<meta property="og:image" content="https://vm-any.web.app/images/logo/android-chrome-512x512.png"/>
<meta property="og:url" content="https://vm-any.web.app"/>
<title>Liberty</title>
<script>
// Временно. Нужно найти способ добавлять их инлайново из вне
const currentLanguage = localStorage.getItem('product__selected-language') ?? 'ru';
document.title = currentLanguage === 'ru' ? 'Либерти' : 'Liberty';
document.documentElement.setAttribute('lang', currentLanguage);
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="src/root.tsx"></script>
</body>
</html>