-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
68 lines (59 loc) · 2.66 KB
/
Copy pathwork.html
File metadata and controls
68 lines (59 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="zh-CN" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>作品详情 · Qireal</title>
<link rel="icon" type="image/jpeg" href="avatar.jpg" id="favicon">
<link rel="preconnect" href="https://api.github.com">
<link rel="preconnect" href="https://raw.githubusercontent.com">
<link rel="dns-prefetch" href="https://api.github.com">
<link rel="dns-prefetch" href="https://raw.githubusercontent.com">
<script src="config.js?v=20260911"></script>
<script>
document.documentElement.dataset.theme =
localStorage.getItem("theme") || window.SITE_CONFIG.defaultTheme;
// 和 index.html 对齐:标题也交给配置(<title> 里的内容作为无 JS 兜底)
document.title = window.SITE_CONFIG.title;
</script>
<link rel="stylesheet" href="style.css?v=20260911">
</head>
<body>
<div class="bg-fx"></div>
<!-- 灵动岛导航 -->
<header class="island">
<a class="logo" href="index.html">
<span class="logo-dot"></span>
<span id="logoText"></span>
</a>
<nav class="nav-links" id="navLinks"></nav>
<button class="theme-toggle" id="themeToggle" aria-label="切换深浅色" title="切换深浅色">
<svg class="icon-sun" viewBox="0 0 24 24" width="17" height="17" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round">
<circle cx="12" cy="12" r="4"/>
<path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"/>
</svg>
<svg class="icon-moon" viewBox="0 0 24 24" width="17" height="17" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
</header>
<!-- 作品详情 -->
<main class="work-page">
<a class="back-link" href="index.html#works">← 返回作品列表</a>
<div class="work-hero"><img id="workBg" alt="作品背景图"></div>
<h1 class="work-name" id="workName">加载中…</h1>
<p class="work-desc" id="workDesc"></p>
<div class="work-meta" id="workMeta"></div>
<h2 class="work-section-title">下载</h2>
<div class="dl-buttons" id="dlButtons"></div>
<h2 class="work-section-title">更新日志</h2>
<div id="changelog"><div class="release-empty">正在加载 Release 信息…</div></div>
</main>
<footer class="footer">
<span id="footerText"></span>
</footer>
<script src="script.js?v=20260911"></script>
<script src="snow.js?v=20260911"></script>
<script src="work.js?v=20260911"></script>
</body>
</html>