-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
209 lines (190 loc) · 8.25 KB
/
post.html
File metadata and controls
209 lines (190 loc) · 8.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="page-title">文章 | TYPERBODY BLOG</title>
<!-- Dynamic SEO Meta Tags (filled by JavaScript) -->
<meta name="description" id="meta-description" content="阅读TYPERBODY博客文章,获取深度技术教程和前沿AI知识。">
<meta name="keywords" id="meta-keywords" content="博客,文章,技术教程,AI编程,人工智能">
<meta name="robots" content="index, follow">
<link rel="canonical" id="canonical-url" href="https://typerbody.xyz/post.html" />
<!-- Open Graph Tags (Social Media) -->
<meta property="og:title" id="og-title" content="文章 | TYPERBODY BLOG">
<meta property="og:description" id="og-description" content="阅读TYPERBODY博客文章,获取深度技术教程和前沿AI知识。">
<meta property="og:url" id="og-url" content="https://typerbody.xyz/post.html">
<meta property="og:type" content="article">
<meta property="og:image" id="og-image" content="https://typerbody.xyz/images/social.png">
<meta property="og:locale" content="zh_CN">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" id="twitter-title" content="文章 | TYPERBODY BLOG">
<meta name="twitter:description" id="twitter-description" content="阅读TYPERBODY博客文章,获取深度技术教程和前沿AI知识。">
<meta name="twitter:image" id="twitter-image" content="https://typerbody.xyz/images/social.png">
<!-- Article Structured Data (filled by JavaScript) -->
<script type="application/ld+json" id="article-structured-data">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "文章标题",
"description": "文章描述",
"datePublished": "2024-01-01",
"dateModified": "2024-01-01",
"author": {
"@type": "Person",
"name": "TYPERBODY"
},
"publisher": {
"@type": "Organization",
"name": "TYPERBODY",
"logo": {
"@type": "ImageObject",
"url": "https://typerbody.xyz/images/social.png"
}
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://typerbody.xyz/post.html"
}
}
</script>
<!-- Breadcrumb Structured Data (helps Google understand site structure) -->
<script type="application/ld+json" id="breadcrumb-structured-data">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "首页",
"item": "https://typerbody.xyz/"
},
{
"@type": "ListItem",
"position": 2,
"name": "文章",
"item": "https://typerbody.xyz/#articles"
},
{
"@type": "ListItem",
"position": 3,
"name": "文章标题",
"item": "https://typerbody.xyz/post.html"
}
]
}
</script>
<!-- Existing Stylesheets -->
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- 阅读进度条 -->
<div class="reading-progress-bar" id="reading-progress-bar"></div>
<!-- 动态背景 -->
<div class="bg-container">
<div class="grid-lines"></div>
<div class="scan-lines"></div>
<div class="stars" id="stars"></div>
<div class="floating-shapes" id="shapes"></div>
</div>
<!-- 故障效果覆盖层 -->
<div class="glitch-overlay"></div>
<!-- 导航栏 -->
<nav class="nav-bar">
<div class="nav-logo">
<span class="logo-text" data-text="TYPERBODY">TYPERBODY</span>
<span class="logo-sub">// 超频空间</span>
</div>
<div class="nav-links">
<a href="index.html" class="nav-link" data-text="首页">首页</a>
<a href="index.html#articles" class="nav-link" data-text="文章">文章</a>
<a href="index.html#about" class="nav-link" data-text="关于">关于</a>
</div>
</nav>
<!-- 文章内容 -->
<main class="main-content">
<article class="article-page">
<a href="index.html" class="back-link">
<span>←</span> 返回首页 // BACK
</a>
<header class="article-header">
<div class="article-meta">
<span id="article-date">--</span>
</div>
<h1 class="article-page-title" id="article-title">加载中...</h1>
<div class="article-page-tags" id="article-tags"></div>
</header>
<!-- 合集导航(仅对有合集的文章显示) -->
<div class="collection-nav" id="collection-nav" style="display: none;">
<div class="collection-header">
<span class="collection-icon">⬡</span>
<span class="collection-name" id="collection-name">合集名称</span>
<button class="collection-toggle" id="collection-toggle">
<span class="current-progress" id="collection-progress">1/3</span>
<span class="toggle-icon" id="toggle-icon">▼</span>
</button>
</div>
<div class="collection-list" id="collection-list">
<!-- 动态生成文章列表 -->
</div>
<div class="collection-nav-buttons">
<a class="prev-article" id="prev-article" href="#" style="visibility: hidden;">
<span class="nav-arrow">←</span>
<span class="nav-text">上一篇</span>
</a>
<a class="next-article" id="next-article" href="#" style="visibility: hidden;">
<span class="nav-text">下一篇</span>
<span class="nav-arrow">→</span>
</a>
</div>
</div>
<div class="article-body" id="article-content">
<div class="loading-indicator">
<div class="loading-spinner"></div>
<span>LOADING CONTENT...</span>
</div>
</div>
</article>
</main>
<!-- TOC 侧边栏(桌面端) -->
<aside class="toc-sidebar" id="toc-sidebar">
<div class="toc-title">◈ 目录</div>
<nav class="toc-nav" id="toc-nav">
<!-- 动态生成 -->
</nav>
</aside>
<!-- TOC 悬浮按钮(移动端) -->
<button class="toc-fab" id="toc-fab" aria-label="打开目录">◈</button>
<!-- TOC 移动端面板 -->
<div class="toc-mobile-overlay" id="toc-mobile-overlay"></div>
<div class="toc-mobile-panel" id="toc-mobile-panel">
<div class="toc-mobile-header">
<span>◈ 目录</span>
<button class="toc-close" id="toc-close" aria-label="关闭目录">×</button>
</div>
<nav class="toc-mobile-nav" id="toc-mobile-nav"></nav>
</div>
<!-- 页脚 -->
<footer class="footer">
<div class="footer-content">
<div class="footer-logo">TYPERBODY BLOG</div>
<div class="footer-info">
<span>© 2026 TYPERBODY</span>
<span class="separator">|</span>
<span>Powered by GitHub Pages</span>
</div>
</div>
<div class="footer-decoration">
<div class="footer-line"></div>
</div>
</footer>
<!-- 鼠标跟随效果 -->
<div class="cursor-glow" id="cursor-glow"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>