31 строка
1.3 KiB
HTML
31 строка
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
|
|
<meta name="robots" content="none" />
|
|
<title>Настройки</title>
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.svg" type="image/svg+xml" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" type="text/css" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined" type="text/css" />
|
|
<script src="https://telegram.org/js/telegram-web-app.js" type="text/javascript"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', async () => {
|
|
const link = document.createElement('link')
|
|
const href = new URL(location)
|
|
href.pathname = `%PUBLIC_URL%/${window.Telegram.WebApp.colorScheme}-theme.css`
|
|
link.rel = 'stylesheet'
|
|
link.href = href.toString()
|
|
link.type = 'text/css'
|
|
document.head.append(link)
|
|
|
|
window.Telegram.WebApp.expand()
|
|
window.Telegram.WebApp.ready()
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|