-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
70 lines (64 loc) · 2.42 KB
/
about.html
File metadata and controls
70 lines (64 loc) · 2.42 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
69
70
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>关于 - SYSTEM_Win11_RE的个人网站</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="container">
<h1 class="logo">SYSTEM_Win11_RE的个人网站</h1>
<ul class="nav-links" id="nav-links">
<li><a href="index.html">首页</a></li>
<li><a href="about.html" class="active">关于</a></li>
</ul>
</nav>
</header>
<main class="container">
<article class="about-content">
<h2>关于</h2>
<p>您好,欢迎来到SYSTEM_Win11_RE的个人网站!</p>
<p>一位成分复杂的UP,不定时更新。</p>
<h3>联系方式</h3>
<ul class="contact-list">
<li>QQ:3970992907</li>
<li>QQ邮箱: 2949074170@qq.com</li>
<li>Bilibili:SYSTEM_Win11_RE</li>
<h3>交流群(QQ)</h3>
<ul class="contact-list">
<li>Win11_REの二游+音游交流群:458189344</li>
<li>Win11_REの资源下载&计算机科学与技术交流群:893357559</li>
<li>Win11_REの教学IWB/智慧黑板交流群:1061859439</li>
<li>Win11_REの信创国产化软硬件技术交流群:1034629566</li>
</ul>
</article>
</main>
<footer>
<div class="container">
<p>© 2025-2026 SYSTEM_Win11_RE. 保留所有权利.</p>
</div>
</footer>
<script src="js/auth.js"></script>
<script src="js/categories.js"></script>
<script src="js/bing-wallpaper.js"></script>
<script>
// 根据登录状态更新导航栏
document.addEventListener('DOMContentLoaded', async () => {
const navLinks = document.getElementById('nav-links');
if (isAuthenticated()) {
navLinks.innerHTML += `
<li><a href="admin.html">后台</a></li>
`;
}
// 应用必应每日一图背景
await applyBingWallpaperToBody({
overlay: true,
overlayColor: 'rgba(255, 255, 255, 0.1)'
});
document.body.classList.add('has-wallpaper');
});
</script>
</body>
</html>