30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
|
|
|
<!-- PWA -->
|
|
<meta name="theme-color" content="#111113">
|
|
<meta name="description" content="Task management application">
|
|
|
|
<!-- iOS PWA -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="TaskBoard">
|
|
<link rel="apple-touch-icon" href="/icon_phone/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<title>TaskBoard</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<!-- Конфиг загружается до приложения (можно менять без перебилда) -->
|
|
<script src="/config.js"></script>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|