mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
21 lines
648 B
HTML
21 lines
648 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script>
|
|
const theme = localStorage.getItem("color-scheme") || "auto"
|
|
const isDark = window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
if (theme === "auto" ? isDark : theme === "dark") {
|
|
document.documentElement.classList.add("dark")
|
|
}
|
|
</script>
|
|
<title>NewsNow</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/app.tsx"></script>
|
|
</body>
|
|
</html>
|