-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
330 lines (260 loc) · 10 KB
/
index.html
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>BAT CAVE</title>
<meta name="author" content="卡面" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<link rel="icon" href="/images/avatar.jpg" />
<link rel="preconnect" href="https://s4.zstatic.net" />
<script src="https://s4.zstatic.net/ajax/libs/vue/3.3.7/vue.global.prod.min.js"></script>
<link rel="stylesheet" href="https://s4.zstatic.net/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.cn" />
<link rel="preconnect" href="https://fonts.gstatic.cn" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.cn/css2?family=Fira+Code:wght@400;500;600;700&family=Lexend:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap"
/>
<script> const mixins = {}; </script>
<script src="https://polyfill.alicdn.com/v3/polyfill.min.js?features=default"></script>
<script src="https://s4.zstatic.net/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://s4.zstatic.net/ajax/libs/highlightjs-line-numbers.js/2.8.0/highlightjs-line-numbers.min.js"></script>
<link
rel="stylesheet"
href="https://s4.zstatic.net/ajax/libs/highlight.js/11.9.0/styles/github.min.css"
/>
<script src="/js/lib/highlight.js"></script>
<script src="/js/lib/preview.js"></script>
<script src="/js/lib/home.js"></script>
<link rel="stylesheet" href="/css/main.css" />
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<div id="layout">
<transition name="fade">
<div id="loading" v-show="loading">
<div id="loading-circle">
<h2>LOADING</h2>
<p>加载过慢请开启缓存 浏览器默认开启</p>
<img src="/images/loading.gif" />
</div>
</div>
</transition>
<div id="menu" :class="{ hidden: hiddenMenu, 'menu-color': menuColor}">
<nav id="desktop-menu">
<a class="title" href="/">
<span>BAT CAVE</span>
</a>
<a href="/">
<i class="fa-solid fa-house fa-fw"></i>
<span> Home</span>
</a>
<a href="/about">
<i class="fa-solid fa-id-card fa-fw"></i>
<span> About</span>
</a>
<a href="/archives">
<i class="fa-solid fa-box-archive fa-fw"></i>
<span> Archives</span>
</a>
<a href="/categories">
<i class="fa-solid fa-bookmark fa-fw"></i>
<span> Categories</span>
</a>
<a href="/tags">
<i class="fa-solid fa-tags fa-fw"></i>
<span> Tags</span>
</a>
</nav>
<nav id="mobile-menu">
<div class="title" @click="showMenuItems = !showMenuItems">
<i class="fa-solid fa-bars fa-fw"></i>
<span> BAT CAVE</span>
</div>
<transition name="slide">
<div class="items" v-show="showMenuItems">
<a href="/">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-house fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">Home</div>
</div>
</a>
<a href="/about">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-id-card fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">About</div>
</div>
</a>
<a href="/archives">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-box-archive fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">Archives</div>
</div>
</a>
<a href="/categories">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-bookmark fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">Categories</div>
</div>
</a>
<a href="/tags">
<div class="item">
<div style="min-width: 20px; max-width: 50px; width: 10%">
<i class="fa-solid fa-tags fa-fw"></i>
</div>
<div style="min-width: 100px; max-width: 150%; width: 20%">Tags</div>
</div>
</a>
</div>
</transition>
</nav>
</div>
<transition name="fade">
<div id="menu-curtain" @click="showMenuItems = !showMenuItems" v-show="showMenuItems"></div>
</transition>
<div id="main" :class="loading ? 'into-enter-from': 'into-enter-active'">
<div id="home-head">
<div
id="home-background"
ref="homeBackground"
data-images="/images/background.jpg"
></div>
<div id="home-info" @click="homeClick">
<span class="loop"></span>
<span class="loop"></span>
<span class="loop"></span>
<span class="loop"></span>
<span class="info">
<div class="wrap">
<h1>BAT CAVE</h1>
<h3></h3>
<h5></h5>
</div>
</span>
</div>
</div>
<div
id="home-posts-wrap"
ref="homePostsWrap"
true
>
<div id="home-posts">
<div class="post">
<a href="/2024/10/10/test/">
<h2 class="post-title">评论问题</h2>
</a>
<div class="category-and-date">
<span class="category">
<a href="/categories/issue/">
<span class="icon">
<i class="fa-solid fa-bookmark fa-fw"></i>
</span>
issue
</a>
</span>
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2024/10/10
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h3 id="giscus-bug"><a href="#giscus-bug" class="headerlink" title="giscus bug"></a>giscus bug</h3><p>giscus评论区有时候好像刷新不出来,多刷新几次应该就出来了。<br>可能是网的问题,大概。</p>
</div>
</div>
<div class="post-tags">
<span class="icon">
<i class="fa-solid fa-tags fa-fw"></i>
</span>
<span class="tag">
<a href="/tags/issue/" style="color: #00a596">issue</a>
</span>
</div>
<a href="/2024/10/10/test/" class="go-post">阅读全文</a>
</div>
<div class="page-current">
<span class="current">1</span>
</div>
</div>
<div id="home-card">
<div id="card-style">
<div id="card-div">
<div class="avatar">
<img src="/images/avatar.jpg" alt="avatar" />
</div>
<div class="name">卡面</div>
<div class="description">
<p>成长,生命,幸福,还有朋友</p>
</div>
<div class="icon-links">
<span class="icon-link">
<a target="_blank" rel="noopener" href="https://space.bilibili.com/22206528?spm_id_from=333.1007.0.0">
<i
class="fa-brands fa-bilibili fa-fw"
></i>
</a>
</span>
<span class="icon-link">
<a href="mailto:lyx11618@gmail.com">
<i
class="fa-regular fa-envelope fa-fw"
></i>
</a>
</span>
<span class="icon-link">
<a target="_blank" rel="noopener" href="https://github.com/kamenjack">
<i
class="fa-brands fa-github fa-fw"
></i>
</a>
</span>
</div>
<div class="friend-links">
<div class="friend-link">
<a target="_blank" rel="noopener" href="https://kamenjack2.github.io/">工作学习用博客(english)</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="footer">
<div id="footer-wrap">
<div>
©
2022 - 2024 BAT CAVE
<span id="footer-icon">
<i class="fa-solid fa-font-awesome fa-fw"></i>
</span>
@卡面
</div>
<div>
Based on the <a target="_blank" rel="noopener" href="https://hexo.io">Hexo Engine</a> &
<a target="_blank" rel="noopener" href="https://github.com/theme-particlex/hexo-theme-particlex">ParticleX Theme</a>
</div>
</div>
</footer>
</div>
<transition name="fade">
<div id="preview" ref="preview" v-show="previewShow">
<img id="preview-content" ref="previewContent" />
</div>
</transition>
</div>
<script src="/js/main.js"></script>
</body>
</html>