-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
755 lines (544 loc) · 24.8 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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hedarko小窝</title>
<meta name="author" content="Hedarko" />
<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://cdn.staticfile.org" />
<script src="https://cdn.staticfile.org/vue/3.3.4/vue.global.prod.min.js"></script>
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/6.4.0/css/all.min.css" />
<link rel="preconnect" href="https://fonts.loli.net" />
<link rel="preconnect" href="https://gstatic.loli.net" crossorigin />
<link rel="stylesheet" href="https://fonts.loli.net/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.io/v3/polyfill.min.js?features=default"></script>
<script src="https://cdn.staticfile.org/highlight.js/11.8.0/highlight.min.js"></script>
<script src="https://cdn.staticfile.org/highlightjs-line-numbers.js/2.8.0/highlightjs-line-numbers.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.staticfile.org/highlight.js/11.8.0/styles/github.min.css"
/>
<script src="/js/lib/highlight.js"></script>
<script src="https://cdn.staticfile.org/KaTeX/0.16.8/katex.min.js"></script>
<script src="https://cdn.staticfile.org/KaTeX/0.16.8/contrib/auto-render.min.js"></script>
<link rel="stylesheet" href="https://cdn.staticfile.org/KaTeX/0.16.8/katex.min.css" />
<script src="/js/lib/math.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 6.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/loading2.gif" />
</div>
</div>
</transition>
<div id="menu" :class="{ hidden: hiddenMenu, 'menu-color': menuColor}">
<nav id="desktop-menu">
<a class="title" href="/">
<span>HEDARKO小窝</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> HEDARKO小窝</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="https://cdn.jsdelivr.net/gh/hedarko20/picture@main/pic_note/1.png,https://cdn.jsdelivr.net/gh/hedarko20/picture@main/pic_note/2.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>Hedarko小窝</h1>
<h3></h3>
<h5></h5>
</div>
</span>
</div>
</div>
<div id="home-posts-wrap" true ref="homePostsWrap">
<div id="home-posts">
<div class="post">
<a href="/2023/10/26/paper9/">
<h2 class="post-title">FACTIFY-5WQA: 5W Aspect-based Fact Verification through Question Answering 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/26
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>Factify5wqa:通过问答基于5w方面的事实验证</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>University of South Carolina, USA(美国南卡罗来纳大学)</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/%E8%AE%BA%E6%96%87/" style="color: #00a596">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #ffa2c4">阅读</a>
</span>
<span class="tag">
<a href="/tags/%E4%BA%8B%E5%AE%9E%E9%AA%8C%E8%AF%81/" style="color: #03a9f4">事实验证</a>
</span>
<span class="tag">
<a href="/tags/%E6%95%B0%E6%8D%AE%E9%9B%86/" style="color: #ffa2c4">数据集</a>
</span>
</div>
<a href="/2023/10/26/paper9/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/17/tutorial2/">
<h2 class="post-title">记录下Python中有关path的bug及解决方案</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/17
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="背景"><a href="#背景" class="headerlink" title="背景"></a>背景</h1><p>项目目录如下</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/debug/" style="color: #ffa2c4">debug</a>
</span>
<span class="tag">
<a href="/tags/python/" style="color: #00bcd4">python</a>
</span>
</div>
<a href="/2023/10/17/tutorial2/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/17/paper8/">
<h2 class="post-title">Unsupervised Dense Information Retrieval with Contrastive Learning 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/17
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>基于对比学习的无监督密集信息检索</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>Meta AI Research(Meta AI研究所)</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/%E8%AE%BA%E6%96%87/" style="color: #03a9f4">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #ff7d73">阅读</a>
</span>
<span class="tag">
<a href="/tags/%E4%BF%A1%E6%81%AF%E6%A3%80%E7%B4%A2/" style="color: #03a9f4">信息检索</a>
</span>
</div>
<a href="/2023/10/17/paper8/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/16/paper7/">
<h2 class="post-title">Automated Fact Checking: Task formulations, methods and future directions 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/16
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>自动化事实核查:任务形式化、方法和未来方向</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>Department of Computer Science University of Sheffield, UK(英国谢菲尔德大学计算机科学系)</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/%E8%AE%BA%E6%96%87/" style="color: #ffa2c4">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #03a9f4">阅读</a>
</span>
<span class="tag">
<a href="/tags/%E4%BA%8B%E5%AE%9E%E9%AA%8C%E8%AF%81/" style="color: #00bcd4">事实验证</a>
</span>
</div>
<a href="/2023/10/16/paper7/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/15/tutorial1/">
<h2 class="post-title">embedding pytorch 实现</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/15
</span>
</div>
<div class="description">
<div class="content" v-pre>
<p>embedding 实现</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/code/" style="color: #ff7d73">code</a>
</span>
<span class="tag">
<a href="/tags/deeping-learning/" style="color: #03a9f4">deeping learning</a>
</span>
</div>
<a href="/2023/10/15/tutorial1/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/12/paper6/">
<h2 class="post-title">A Survey on Automated Fact-Checking 阅读报告</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/12
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>自动事实核查研究综述</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>Department of Computer Science and Technology University of Cambridge, UK(英国剑桥大学计算机科学与技术系)</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/%E8%AE%BA%E6%96%87/" style="color: #00a596">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #ffa2c4">阅读</a>
</span>
</div>
<a href="/2023/10/12/paper6/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/11/paper5/">
<h2 class="post-title">Learn over Past, Evolve for Future: Forecasting Temporal Trends for Fake News Detection 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/11
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>学习过去的经验,为未来进化:预测虚假新闻检测的时间趋势</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>Key Lab of Intelligent Information Processing of Chinese Academy of Sciences(中科院智能信息处理重点实验室),Institute of Computing Technology, Chinese Academy of Sciences(中国科学院计算技术研究所),University of Chinese Academy of Sciences(中国科学院大学),ZhongKeRuijian Technology Co., Ltd(中科瑞健科技有限公司)</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/%E8%AE%BA%E6%96%87/" style="color: #00a596">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #00bcd4">阅读</a>
</span>
</div>
<a href="/2023/10/11/paper5/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/11/paper4/">
<h2 class="post-title">Reasoning Over Semantic-Level Graph for Fact Checking 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/11
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>基于语义层次图的推理进行事实查证</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>The School of Data and Computer Science, Sun Yat-sen University(中山大学数据与计算机科学学院),Guangdong Key Laboratory of Big Data Analysis and Processing, Guangzhou, P.R.China(广东省大数据分析处理重点实验室,广州),Microsoft Research MOE Key Lab of Computational Linguistics, Peking University(北京大学微软计算语言学教育部重点实验室)</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/%E8%AE%BA%E6%96%87/" style="color: #ffa2c4">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #00bcd4">阅读</a>
</span>
</div>
<a href="/2023/10/11/paper4/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/10/paper3/">
<h2 class="post-title">Improving Evidence Retrieval for Automated Explainable Fact-Checking 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/10
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p><a target="_blank" rel="noopener" href="https://github.com/algoprog/Quin">提高证据检索的自动可解释事实查证 (Quin)</a></p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>Institute of Data Science, National University of Singapore(新加坡国立大学数据科学研究所),NUS Centre for Trusted Internet and Community(新加坡国立大学可信互联网与社区中心),<br>School of Computing, National University of Singapore(School of Computing, National University of Singapore)</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/%E8%AE%BA%E6%96%87/" style="color: #00bcd4">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #00a596">阅读</a>
</span>
</div>
<a href="/2023/10/10/paper3/" class="go-post">阅读全文</a>
</div>
<div class="post">
<a href="/2023/10/10/paper2/">
<h2 class="post-title">Interpretable Multimodal Misinformation Detection with Logic Reasoning 阅读笔记</h2>
</a>
<div class="category-and-date">
<span class="date">
<span class="icon">
<i class="fa-solid fa-calendar fa-fw"></i>
</span>
2023/10/10
</span>
</div>
<div class="description">
<div class="content" v-pre>
<h1 id="标题"><a href="#标题" class="headerlink" title="标题"></a>标题</h1><p>基于逻辑推理的可解释性多模态不实信息检测</p>
<h1 id="作者和出处"><a href="#作者和出处" class="headerlink" title="作者和出处"></a>作者和出处</h1><p>City University of Hong Kong(香港城市大学), Nanyang Technological University(南洋理工大学), University of Washington(华盛顿大学)</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/%E8%AE%BA%E6%96%87/" style="color: #ffa2c4">论文</a>
</span>
<span class="tag">
<a href="/tags/%E9%98%85%E8%AF%BB/" style="color: #00bcd4">阅读</a>
</span>
<span class="tag">
<a href="/tags/%E5%81%87%E6%96%B0%E9%97%BB%E6%A3%80%E6%B5%8B/" style="color: #00a596">假新闻检测</a>
</span>
</div>
<a href="/2023/10/10/paper2/" class="go-post">阅读全文</a>
</div>
<div class="page-current">
<span class="current">1</span>
<a class="page-num" href="/page/2">2</a>
<a class="page-num" href="/page/2/">
<i class="fa-solid fa-caret-right fa-fw"></i>
</a>
</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">Hedarko</div>
<div class="description">
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=283 height=52 src="//music.163.com/outchain/player?type=2&id=481859401&auto=1&height=32"></iframe>
<br>
<a target="_blank" rel="noopener" href="https://zh.moegirl.org.cn/zh-hans/%E9%99%86%E5%85%AB%E9%AD%94%E4%BA%9A%E7%91%A0">会做算数(确信)</a>
</div>
<div class="icon-links">
<span class="icon-link">
<a target="_blank" rel="noopener" href="https://space.bilibili.com/8260038">
<i
class="fa-brands fa-bilibili fa-fw"
></i>
</a>
</span>
<span class="icon-link">
<a target="_blank" rel="noopener" href="https://github.com/hedarko20">
<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://argvchs.github.io">Argvchs</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="footer">
<div id="footer-wrap">
<div>
©
2023 - 2023 Hedarko小窝
<span id="footer-icon">
<i class="fa-solid fa-font-awesome fa-fw"></i>
</span>
@Hedarko
</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>
<script src="/js/<file>"></script>
<link rel="stylesheet" href="/css/<file>" />
<canvas
id="background"
style="position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: -1"
></canvas>
<script src="/js/background.min.js"></script>