2024-09-26 11:30:21 +08:00
|
|
|
<!doctype html>
|
2025-01-19 15:38:29 +08:00
|
|
|
<html lang="zh-CN">
|
2024-10-20 01:30:10 +08:00
|
|
|
|
|
|
|
<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" />
|
2025-01-19 15:38:29 +08:00
|
|
|
<!-- SEO Meta Tags -->
|
|
|
|
<meta name="description" content="NewsNow - 实时新闻聚合阅读器,汇集全球热点新闻,提供优雅的阅读体验" />
|
|
|
|
<meta name="keywords" content="新闻,科技新闻,实时新闻,新闻聚合,NewsNow" />
|
|
|
|
<meta name="author" content="NewsNow" />
|
|
|
|
<meta name="robots" content="index, follow" />
|
|
|
|
|
|
|
|
<!-- Open Graph Meta Tags -->
|
|
|
|
<meta property="og:title" content="NewsNow - 优雅的新闻聚合阅读器" />
|
|
|
|
<meta property="og:description" content="实时新闻聚合阅读器,汇集全球热点新闻,提供优雅的阅读体验" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:url" content="https://shishixinwen.news" />
|
|
|
|
<meta property="og:image" content="https://shishixinwen.news/og-image.svg" />
|
|
|
|
|
|
|
|
<!-- Twitter Card Meta Tags -->
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
<meta name="twitter:title" content="NewsNow - 优雅的新闻聚合阅读器" />
|
|
|
|
<meta name="twitter:description" content="实时新闻聚合阅读器,汇集全球热点新闻,提供优雅的阅读体验" />
|
|
|
|
<meta name="twitter:image" content="https://shishixinwen.news/og-image.svg" />
|
|
|
|
|
2024-10-20 01:30:10 +08:00
|
|
|
<meta name="theme-color" content="#F14D42" />
|
2024-10-23 04:03:15 +08:00
|
|
|
<link rel="preload" href="/Baloo2-Bold.subset.ttf" as="font" type="font/ttf" crossorigin>
|
2024-10-20 01:30:10 +08:00
|
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
|
2025-01-19 15:38:29 +08:00
|
|
|
|
|
|
|
<!-- Schema.org markup for Google -->
|
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
"@type": "WebSite",
|
|
|
|
"name": "NewsNow",
|
|
|
|
"url": "https://shishixinwen.news",
|
|
|
|
"description": "实时新闻聚合阅读器,汇集全球热点新闻,提供优雅的阅读体验",
|
|
|
|
"potentialAction": {
|
|
|
|
"@type": "SearchAction",
|
|
|
|
"target": "https://shishixinwen.news/search?q={search_term_string}",
|
|
|
|
"query-input": "required name=search_term_string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- Google Analytics -->
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EL9HHYE5LC"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-EL9HHYE5LC');
|
|
|
|
</script>
|
|
|
|
|
2024-10-20 01:30:10 +08:00
|
|
|
<script>
|
|
|
|
function safeParseString(str) {
|
|
|
|
try {
|
|
|
|
return JSON.parse(str)
|
|
|
|
} catch {
|
|
|
|
return ""
|
2024-10-19 13:15:48 +08:00
|
|
|
}
|
2024-10-20 01:30:10 +08:00
|
|
|
}
|
|
|
|
const theme = safeParseString(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")
|
|
|
|
}
|
2024-11-03 21:13:21 +08:00
|
|
|
|
|
|
|
const query = new URLSearchParams(window.location.search)
|
|
|
|
if (query.has("login") && query.has("user") && query.has("jwt")) {
|
|
|
|
localStorage.setItem("user", query.get("user"))
|
|
|
|
localStorage.setItem("jwt", JSON.stringify(query.get("jwt")))
|
|
|
|
window.history.replaceState({}, document.title, window.location.pathname)
|
|
|
|
}
|
2024-10-20 01:30:10 +08:00
|
|
|
</script>
|
|
|
|
<title>NewsNow</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
2024-10-30 00:15:24 +08:00
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
2024-10-20 01:30:10 +08:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|