steamwar_eventtool/index.html
2023-07-25 11:59:00 +02:00

27 Zeilen
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="SteamWar Event Manager">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/favicon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="SteamWar Multitool">
<link rel="manifest" href="/manifest.json">
<link href="/font/roboto.css" rel="stylesheet">
<title>SteamWar Eventplanner</title>
</head>
<body>
<script>
const getPreferredScheme = () => localStorage.getItem("theme") ?? window?.matchMedia?.('(prefers-color-scheme:dark)')?.matches ? 'dark' : 'light';
document.body.classList.add(getPreferredScheme());
</script>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>