forked from blinkfox/hexo-theme-matery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
812 lines (733 loc) · 37.2 KB
/
_config.yml
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
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
# main menu navigation url and icon
# 配置菜单导航的名称、路径和图标icon.
menu:
Index:
url: /
icon: fas fa-home
Tags:
url: /tags
icon: fas fa-tags
Categories:
url: /categories
icon: fas fa-bookmark
Archives:
url: /archives
icon: fas fa-archive
About:
url: /about
icon: fas fa-user-circle
# 这个东西目前似乎是有BUG的
# Contact:
# url: /contact
# icon: fas fa-user
# 现在不展示个人主页了,因为很久没更新了,不过还是留一个访问的接口
Homepage:
url: /homepage
icon: fas fa-award
# 由于没有可以加上去的友链,以及友链下的评论功能还不会去除,先注释掉,把友链藏起来
# Friends:
# url: /friends
# icon: fas fa-address-book
# 二级菜单写法如下
#Medias:
# icon: fas fa-list
# children:
# - name: Musics
# url: /musics
# icon: fas fa-music
# - name: Movies
# url: /movies
# icon: fas fa-film
# - name: Books
# url: /books
# icon: fas fa-book
# - name: Galleries
# url: /galleries
# icon: fas fa-image
# Website start time.
# 站点运行开始时间.
time:
enable: true
year: 2021 # 年份
month: 02 # 月份
date: 01 # 日期
hour: 00 # 小时
minute: 00 # 分钟
second: 00 # 秒
# Index cover carousel configuration.
# 首页封面轮播图的相关配置.
cover:
showPrevNext: true # 是否显示左右切换按钮. Whether to display the left and right toggle buttons.
showIndicators: true # 是否显示指示器. # Whether to display the indicators
autoLoop: true # 是否自动轮播. Whether it is automatically rotated.
duration: 120 # 切换延迟时间. Switching delay time.
intervalTime: 5000 # 自动切换下一张的间隔时间. Automatically switch the interval of the next one.
useConfig: false # 是否使用配置文件, 在 _data/covers.json 下配置推荐文章, false则使用主题在文章中的配置 cover coverImg
# useConfig 使用方式: 将主题 hexo-theme-matery/source/_data/covers.json 移动到 my-blog/source/_data/下修改配置即可
video:
enable: false
src:
- https://txmov2.a.yximgs.com/upic/2021/04/09/22/BMjAyMTA0MDkyMjMwMDhfMTg1ODk2MDg4N180NzUyOTMyMjA4Nl8xXzM=_b_B8e080d7ede19e6674d48a9f12545007b.mp4?pkey=AAVAfNhi5_f-HGkIPXrY5w6nyf4JibwOY-WwdHgSJ2aSoi-2WQLpiYDunLbRZQuESz875eMdsepRlVFtXg9nuQY58uRc-7AsF0kEMNR6QYBj56g9JFFMSGdsoKK2-SV27u8&tag=1-1617978682-xpcwebprofile-0-lcvipceuti-9e40072f87531f1a&clientCacheKey=3xbbtbrfxqpccp4_b.mp4
- https://txmov2.a.yximgs.com/upic/2021/04/09/21/BMjAyMTA0MDkyMTQyNDRfMTg1ODk2MDg4N180NzUyNjAyMzA0N18xXzM=_b_B83b004b85aba8eca3ded270637616575.mp4
- https://txmov2.a.yximgs.com/upic/2021/04/09/21/BMjAyMTA0MDkyMTU4MDNfMTg1ODk2MDg4N180NzUyNzE0MzkyNV8xXzM=_b_Bf94cee6bd181efeaca64049bd2e4e276.mp4
# index page dream text,
# index page dream text,
# 配置首页显示"梦想"的语句.
dream:
enable: true
showTitle: true
title: 寻找天堂
text: “对我而言,只要活得充实,选择了什么样的道路并不重要。人的一生如此短暂,我们不可能完成每一件想做的事情。所以到最后,我还是必须满足于我所选择的道路” “不是所有的人都能在现实生活中达成自己的人生目标,岁月会改变许多人。人的动力不会久留,虽然一开始总是十分强烈,可这份热情会慢慢退却,最终......消耗殆尽。”
# 愿新的一年里我们都能更好地爱自己
# 在新的一年里,不知你会有怎样的计划和愿景。是学业上更上一层楼,是事业上开疆拓土,亦或是在平凡而温暖的生活里感受爱与被爱?不论你是谁,处在什么样的人生阶段,想要获得什么,但至少有一件事我想或许对于你与我或其他任何人都是相通的,那就是学会爱自己。很多时候我们都会渴望被爱、被接纳与宠溺,为了获取这样一份爱和肯定,或许你曾竭力地想要甩掉自身的一些缺陷,或许习惯于不断地鞭策自己,想要事事做到最好,又或是对曾经犯下的错误懊恼不已,不愿原谅自己。你可能认为,只有自己足够好足够优秀才值得起自己想要获得的爱。然而事实上,我们可能很难做到因完美而被爱,也没有任何人能做到完美。但是我们会因真实而被爱,那些或是好的或是令人烦恼的方方面面共同构成了完整的我们。真实自有千钧力。想要获得别人的接纳,或许我们首先需要去接纳完整的真实的自己。承认、欣赏并相信自己的能力,也接纳自身可能存在的局限,接纳自己的身体和外在,在负面评判前保护自己,能客观吸收,但不过分苛责。对自己的优点、缺点不加评判地承认,接受自己当前的样子。在这个世界上,最爱我们的人也应当是我们自己。当我们能爱自己、在意自己的感受、尊重自己、及时地保护自己,别人才有可能会接受到同样的讯号。因为我们珍视自己时,这份珍视才能传递,他们才会认为自己应当同样地对待我们。爱自己,或许会成为我们与人交往最大的底气,当得不到足够的接纳与尊重时,我们转身还会有一个自己。张开双臂去拥抱和关爱我们内心的小孩,使我们真正有拒绝和离开的勇气。愿新的一年里我们都能更好地爱自己。
#大学
#大学就是自由的学习的地方,不是高中有人逼着,沉迷游戏的人终将承担其后果,而用功努力的人也会自然的浮出水面。你认为大学这样做疏于管理,但是只有这样才能真正选拔出热爱科研的人才。当一个人没有了监督,才能够显示其内心的向往是什么。是游戏人生?还是选择业余爱好,亦或者走上科研道路。大学不会告诉你,这一切都是你自己的选择!
#如何成为一个很厉害的人
#“决策心理学认为,人在面临选择时,通常会采用“满意原则”,而不是“最优原则”。所谓满意原则,就是人会从自己最熟悉的待选项开始逐一进行考察,如果考察到一个满足内心标准的选项,就会采纳这个选项,余下的选项就废弃了,而并不是对比所有待选项,然后选出其中最好的。因此,一个人会不会做出一个尽量好的选择,跟他所采纳的标准有很大的关系。” “一个成熟的人,他的标准来自他的内心,而大多数人,却受环境所左右。一个年轻人,进入一所不那么优秀的高校,对自己的标准会不由自主地降低以适应这个环境,减少自身与环境的冲突,而这种做法对他们的人生也许是致命的。” “那些考入二三流大学的学生,在这方面的问题可能更加严重,因为高考本身带来的挫败感、二三流高校学生的身份设定及环境暗示、不称职的老师引发的失望以及同学间放任自流气氛的带动作用,都容易让他们在一个低标准下,自觉“满意”地度过每一天。”
#寻找天堂
#“对我而言,只要活得充实,选择了什么样的道路并不重要。人的一生如此短暂,我们不可能完成每一件想做的事情。所以到最后,我还是必须满足于我所选择的道路” “不是所有的人都能在现实生活中达成自己的人生目标,岁月会改变许多人。人的动力不会久留,虽然一开始总是十分强烈,可这份热情会慢慢退却,最终......消耗殆尽。但是在这模拟的世界里,基于某一时刻的精神状态,可以让他们一时的动机贯穿一生......”
#CHANGE
#把所有的夜归还给星河,把所有的春光归还给疏疏篱落,把所有的慵慵沉迷与不前,归还给过去的我。明日之我,胸中有丘壑,立马振山河。
#忙时不慌,闲时不废
#生活可以匆忙,但不要慌乱;日子可以清闲,但不能荒废。忙时认真工作,闲时提升自己。生活瞬息万变,只有稳扎稳打才能攒足砝码与生活博弈,脚下的路也才会越走越顺。能成事者,并非一定要有经天纬地之才,也无需日日五更起三更眠,以适合自己的节奏笃定前行,也能满载而归。愿我们都能够胸怀丘壑,步履从容!
# Whether to display the musics.
# 是否在首页显示音乐.
music:
enable: false
title: #非吸底模式有效
enable: true
show: 听听音乐
autoHide: true # hide automaticaly
server: netease #require music platform: netease, tencent, kugou, xiami, baidu
type: playlist #require song, playlist, album, search, artist
id: 503838841 #require song id / playlist id / album id / search keyword
fixed: true # 开启吸底模式
autoplay: false # 是否自动播放
theme: '#42b983'
loop: 'all' # 音频循环播放, 可选值: 'all', 'one', 'none'
order: 'random' # 音频循环顺序, 可选值: 'list', 'random'
preload: 'auto' # 预加载,可选值: 'none', 'metadata', 'auto'
volume: 0.7 # 默认音量,请注意播放器会记忆用户设置,用户手动设置音量后默认音量即失效
listFolded: true # 列表默认折叠
hideLrc: true # 隐藏歌词
# Whether to display the musics.
# 单独的音乐页面.
musics:
enable: false
title: #非吸底模式有效
enable: true
show: 听听音乐
server: tencent #require music platform: netease, tencent, kugou, xiami, baidu
type: playlist #require song, playlist, album, search, artist
id: 1776127550 #require song id / playlist id / album id / search keyword
fixed: false # 开启吸底模式
autoplay: true # 是否自动播放
theme: '#42b983'
loop: 'all' # 音频循环播放, 可选值: 'all', 'one', 'none'
order: 'random' # 音频循环顺序, 可选值: 'list', 'random'
preload: 'auto' # 预加载,可选值: 'none', 'metadata', 'auto'
volume: 0.7 # 默认音量,请注意播放器会记忆用户设置,用户手动设置音量后默认音量即失效
listFolded: false # 列表默认折叠
listMaxHeight: "525px" #列表最大高度
# Whether to display the videos.
# 是否在首页显示视频.
video:
enable: false
showTitle: true
title: 精彩视频
url: # 必填
pic:
thumbnails:
height: # 如:400
autoplay: false # 是否自动播放
theme: '#42b983'
loop: false # 是否循环播放
preload: 'auto' # 预加载,可选值: 'none', 'metadata', 'auto'
volume: 0.7
# Whether to display the title of the recommended posts
# 是否显示推荐文章的标题
recommend:
enable: true
showTitle: true
useConfig: false # 是否使用配置文件, 在 _data/recommends.json 下配置推荐文章, false则会走主题配置的 top 属性
# useConfig 使用方式: 将主题 hexo-theme-matery/source/_data/recommends.json 移动到 my-blog/source/_data/下修改配置即可
# Configure website favicon and LOGO
# 配置网站favicon和网站LOGO
favicon: /favicon.png
logo: /medias/logo.png
# The configuration of the second button in the home banner,
# including the display name of the button, the font awesome icon, and the hyperlink to the button.
# 首页 banner 中的第二个按钮的配置,包括按钮的显示名称、font awesome图标和按钮的超链接.
indexbtn:
enable: true
name: Github
icon: fab fa-github-alt
url: https://github.com/Immortalqx
# The configurations of the second line of home banner
# icon/button will not show up if you leave the corresponding socialLink empty
# 首页 banner 中的第二行个人信息配置,留空即不启用
socialLink:
github: https://github.com/Immortalqx
email: [email protected]
qq: 1727854434
rss: true # true、false
weibo: # https://weibo.com/xxx
zhihu: # https://www.zhihu.com/xxx
facebook: # https://www.facebook.com/xxx
twitter: # https://twitter.com/xxx
# Whether to activate the Post TOC, and Configure which title types are supported by TOC support.
# You can add `toc: false` to the Front-matter of a post to turn off the TOC.
# 是否激活文章 TOC 功能,并配置TOC支持选中哪些标题类型,这是全局配置。
# 可以在某篇文章的 Front-matter 中再加上`toc: false`,使该篇文章关闭TOC目录功能
toc:
enable: true
heading: h2, h3, h4
collapseDepth: 0 # 目录默认展开层级
showToggleBtn: true # 是否显示切换TOC目录展开收缩的按钮
# 代码块相关
code:
lang: true # 代码块是否显示名称
copy: true # 代码块是否可复制
shrink: true # 代码块是否可以收缩
break: false # 代码是否折行
# 是否激活文章末尾的打赏功能,默认激活(你替换为的你自己的微信、支付宝二维码图片、或者使用网络图片也可以).
reward:
enable: true
title: 你的赏识是我前进的动力
wechat: /medias/reward/wechat.png
alipay: /medias/reward/alipay.jpg
# Whether to activate the copyright information of the blog and author when copying the post content.
# minCharNumber: Approve copyright information by copying at least how many characters.
# 是否激活复制文章时追加博客和作者的版权信息.
copyright:
enable: false
minCharNumber: 120 # 至少复制多少个字符就追加版权信息.
description: 本文章著作权归作者所有,任何形式的转载都请注明出处。
# Whether to activate the mathjax, this is a global configuration, but the post still does not open the mathjax rendering.
# Considering that the mathjax loading is time consuming,
# you also need to add `mathjax: true` to the Front-matter of the post that needs to be rendered.
# 是否激活mathjax数学公式,这是全局配置,但文章仍然不会都开启mathjax渲染,
# 考虑到mathjax加载比较耗时,你还需要在需要渲染的文章的Front-matter中再加上`mathjax: true`才行.
mathjax:
enable: true
cdn: https://cdn.bootcss.com/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_HTMLorMML
# Post word count, reading duration, site total word count.
# Before you activate, please confirm that you have installed the hexo-wordcount plugin,
# install the plugin command: `npm i --save hexo-wordcount`.
# 文章字数统计、阅读时长、总字数统计等
# 文章信息--若要开启文章字数统计,需要安装 hexo-wordcount 插件,安装命令: `npm i --save hexo-wordcount`
postInfo:
date: true # 发布日期
update: false # 更新日期
wordCount: true # 文章字数统计
totalCount: true # 站点总文章字数
min2read: true # 文章阅读时长
readCount: true # 文章阅读次数
# Whether to activate the 'love' effect of clicking on the page.
# 是否激活点击页面的'爱心'效果,默认激活.
clicklove:
enable: false
# | 文件名 | 说明 |
# | :----------------- | :--------------------- |
# | sakura-small.js | 少量樱花 |
# | sakura-half.js | 樱花相对原效果数量减半 |
# | sakura-reduce.js | 樱花相对原效果减少1/4 |
# | sakura.js | 樱花数量不变(原效果) |
# 默认事sakura.js,如需修改,请到下面地址修改
# libs
# js:
# sakura: /libs/others/sakura-reduce.js
# 是否激活页面樱花效果, 只在桌面版网页启用特效
# 下面三种特效建议选择一种就够了,
sakura:
enable: false
# 是否激活页面鼠标星星跟随效果, 只在桌面版网页启用特效
mouseStar:
enable: false
# 是否激活页面飘雪效果, 只在桌面版网页启用特效
snowdown:
enable: false
# profile in about page, including avatars, career, and personal introductions.
# 在”关于”页面中配置个人信息,包括头像、职业和个人介绍.
profile:
avatar: /medias/avatar.jpg
career: 刘权祥
introduction: 西北工业大学本硕,研究方向:NeRF、3DGS、SLAM
# config my projects informations in about page.
# If you don't want to display this `My Projects` content, you can deactivate or delete this configuration.
# 在“关于”页面配置"我的项目"信息,如果你不需要这些信息则可以将其设置为不激活或者将其删除.
myProjects:
enable: false
data:
Note-Helper:
icon: fas fa-file-alt
iconBackground: 'linear-gradient(to bottom right, #66BB6A 0%, #81C784 100%)'
url: https://github.com/Immortalqx/Note-Helper
desc: 基于MFC的笔记助手,支持录入课表,能根据当前时间和课表分类保存笔记,适合上网课使用。
Qt-Simulation:
icon: fas fa-database
iconBackground: 'linear-gradient(to bottom right, #F06292 0%, #EF5350 100%)'
url: https://github.com/Immortalqx/Qt-Simulation
desc: 一个使用Qt开发的仿真环境,模拟2D平面中小车利用激光雷达进行建图
# typora-vue-theme:
# icon: fas fa-file-alt
# iconBackground: 'linear-gradient(to bottom right, #29B6F6 0%, #1E88E5 100%)'
# url: https://github.com/blinkfox/typora-vue-theme
# desc: This is a typora theme inspired by Vue document style.
# config my skills informations in about page.
# If you don't want to display this `My Skills` content, you can deactivate or delete this configuration.
# 在“关于”页面配置"我的技能"信息,如果你不需要这些信息则可以将其设置为不激活或者将其删除.
mySkills:
enable: false
data:
C&C++:
background: 'linear-gradient(to right, #FF0066 0%, #FF00CC 100%)'
percent: 80%
Linux:
background: 'linear-gradient(to right, #9900FF 0%, #CC66FF 100%)'
percent: 65%
Java:
background: 'linear-gradient(to right, #2196F3 0%, #42A5F5 100%)'
percent: 80%
ROS:
background: 'linear-gradient(to right, #00BCD4 0%, #80DEEA 100%)'
percent: 61%
Python:
background: 'linear-gradient(to right, #4CAF50 0%, #81C784 100%)'
percent: 59%
HTML:
background: 'linear-gradient(to right, #FFEB3B 0%, #FFF176 100%)'
percent: 65%
# config gallery of my photos in about page.
# If you don't want to display this `Gallery` content, you can deactivate or delete this configuration.
# 在“关于”页面配置"我的相册"图片,如果你不需要这些信息则可以将其设置为不激活或者将其删除.
myGallery:
enable: false
data:
- /medias/featureimages/a.png
- /medias/featureimages/b.png
- /medias/featureimages/c.png
# Whether to display post-calender in the `archive` page
# 设置在归档页面中是否显示'文章日历'控件
postCalendar: true
# 不建议使用gittalk,gitment这样权限过高的oauth app,因为它们能够 读写 授权者 所有的公共仓库 ,也就是说拿到你的授权 Token 的人,可以将你的 GitHub 公共仓库删空(这是github权限分的不够细的锅),如果恶意攻击者想获取使用者的 AccessToken,只需要在代码中加上一个 ajax 请求即可。原贴地址:https://www.v2ex.com/t/535608。建议大家看完。(我没有在用gittalk/gitment的网站上评论过,但根据v2ex网友的提示,如果网站自行修改了 gitalk.js 脚本 或者反代了 github api,就很容易拿到你的 Token )
# https://github.com/utterance/utterances 是个 GitHub App,它的权限仅限于某个仓库。像 hugo hexo 这种静态页面类型的博客,clientID/clientSecret 泄露是不可避免的。我认为较好的解决方式是像 utteras 这种 GitHubApp,只有一个仓库的读写权限,将破坏降到最小。
# valine是使用的免费的leancloud开发版资源,即使数据丢了leancloud也不用负任何的责任。此外valine的src目录已在1.4.0后停止更新。。。薛定谔的开源。
# 当初多说国内最大都倒了,livere不一定靠谱。
# disqus被墙了。
# 畅言需要备案。
# the Gitalk config,default disabled
# Gitalk 评论模块的配置,默认为不激活
gitalk:
enable: false
owner:
repo:
oauth:
clientId:
clientSecret:
admin:
# the Gitment config,default disabled
# Gitment 评论模块的配置,默认为不激活
gitment:
enable: false
owner:
repo:
oauth:
clientId:
clientSecret:
# disqus config, default disabled
# Disqus评论模块的配置,默认为不激活
disqus:
enable: false
shortname:
# Livere comment configuration, the default is not activated
# Livere 来必力评论模块的配置,默认为不激活
livere:
enable: false
uid:
# 腾讯人机验证
# 注意:目前只适配和测试了valine,其它评论系统未调试验证!
# 介绍: https://cloud.tencent.com/document/product/1110/36841
# 管理验证码: https://console.cloud.tencent.com/captcha/graphical
tcaptcha:
enable: false
appid: xxxxxxxxxx # 你的appid
# The configuration of the Valine comment module is not activated by default.
# To use it, activate the configuration item and set appId and appKey.
# Valine 评论模块的配置,默认为不激活,如要使用,就请激活该配置项,并设置 appId 和 appKey.
valine:
enable: true
appId: bMq5alM79AoOmPl5Q65aeVqI-gzGzoHsz
appKey: O0Q21Re9hVoBb41y6euVKCQq
avatar: 'retro'
pageSize: 10
placeholder: '填上邮箱可以收到我的回复呦ฅ^ω^ฅ'
background: /medias/comment_bg.png
coolpushkey:
# The configuration of the Waline comment module is not activated by default.
# To use it, activate the configuration item.
# Waline 评论模块的配置,默认为不激活,如要使用,就请激活该配置项
# See: https://waline.js.org/
waline:
enable: false
# Waline 服务端部署参考 https://waline.js.org/guide/server/intro.html 客户端和服务端版本需一致
# 下面是一个例子,请替换成自己的服务端
serverURL: https://waline.your-domain.com
avatar: 'mp' # Gravatar style : ''/mp/identicon/monsterid/wavatar/retro/hide
changyan:
enable: false
appId:
conf:
# Whether to display fork me on github icon and link, default true, You can change it to your repo address
# 配置是否在 header 中显示 fork me on github 的图标,默认为true,你可以修改为你的仓库地址.
githubLink:
enable: true
url: https://github.com/Immortalqx
title: Follow me
# The configuration of the Twikoo comment module is not activated by default.
# To use it, activate the configuration item and set envId.
# Twikoo 评论模块的配置,默认为不激活,如要使用,就请激活该配置项,并设置环境 ID envId.
# See: https://twikoo.js.org
twikoo:
enable: false
envId: twikoo-1gs9l0fb17e7897a # 环境 ID,搭建教程:https://twikoo.js.org/quick-start.html
# region: ap-guangzhou # 环境地域,默认为 ap-shanghai
# path: 'window.location.pathname' # 自定义文章路径
# The password verification feature of read post. To use this feature,
# activate the configuration item and write the 'password' key and Cipher in the post's Front-matter.
# Note: In order to ensure that the original password will not be leaked to the web page,
# the password of the article must be encrypted by 'SHA256' so that it will not be cracked.
# 阅读文章的密码验证功能,如要使用此功能请激活该配置项,并在对应文章的Front-matter中写上'password'的键和加密后的密文即可.
# 请注意:为了保证密码原文不会被泄露到网页中,文章的密码必须是通过'SHA256'加密的,这样就不会被破解.
verifyPassword:
enable: false
promptMessage: 请输入访问本文章的密码
errorMessage: 密码错误,将返回主页!
# busuanzi(http://busuanzi.ibruce.info/) website statistics
# 不蒜子(http://busuanzi.ibruce.info/) 网站统计
busuanziStatistics:
enable: true
totalTraffic: true # 总访问量
totalNumberOfvisitors: true # 总人次
# Add google analytics configuration
# 添加 Google Analytics 配置
googleAnalytics:
enable: false
id:
# Add baidu analytics configuration
# 添加 baidu Analytics 配置
baiduAnalytics:
enable: false
id:
# 百度搜索资源平台提交链接
baiduPush: true
# The used front-end library can be replaced with the corresponding CDN address as needed,
# If the specific version is not specified below, you can use the latest version.
# 使用到的前端库,可按需替换成对应的CDN地址,如果下面未指定具体的版本号,使用最新的版本即可.
# 注:jsdelivr可以自动帮你生成.min版的js和css,所以你在设置js及css路径中可以直接写.min.xxx
libs:
css:
matery: /css/matery.css
mycss: /css/my.css
post: /css/post.css
reward: /css/reward.css
dark: /css/dark.css
indexcover: /css/indexcover.css
gallery: /css/gallery.css
fontAwesome: /libs/awesome/css/all.min.css # V6.1.2 20220809
materialize: /libs/materialize/materialize.min.css # 1.2.1 20230106
aos: /libs/aos/aos.css
animate: /libs/animate/animate.min.css # V3.5.1
lightgallery: /libs/lightGallery/css/lightgallery.min.css # V1.10.0
aplayer: /libs/aplayer/APlayer.min.css
dplayer: /libs/dplayer/DPlayer.min.css
gitalk: /libs/gitalk/gitalk.css
jqcloud: /libs/jqcloud/jqcloud.css
tocbot: /libs/tocbot/tocbot.css
prism: /libs/prism/prism.min.css
mermaid: /libs/mermaid/mermaid.min.css
fancybox: /libs/fancybox/jquery.fancybox.css
justifiedGallery: /libs/justifiedGallery/justifiedGallery.min.css
js:
matery: /js/matery.js
sc2tc: /js/tw_cn.js
jquery: /libs/jquery/jquery-3.6.0.min.js #3.6.0 20211109
materialize: /libs/materialize/materialize.min.js # 1.2.1 20230106
masonry: /libs/masonry/masonry.pkgd.min.js # v4.0.0
aos: /libs/aos/aos.js
scrollProgress: /libs/scrollprogress/scrollProgress.min.js
lightgallery: /libs/lightGallery/js/lightgallery-all.min.js # V1.10.0
typed: /libs/typed/typed.js
clicklove: /libs/others/clicklove.js
sakura: /libs/others/sakura.js
star: /libs/others/star.js
snow: /libs/others/snow.js
tcaptcha: /libs/others/TencentCaptcha.js
busuanzi: /libs/others/busuanzi.pure.mini.js
aplayer: /libs/aplayer/APlayer.min.js
meting: /libs/aplayer/Meting.min.js
dplayer: /libs/dplayer/DPlayer.min.js
crypto: /libs/cryptojs/crypto-js.min.js
echarts: /libs/echarts/echarts.min.js
gitalk: /libs/gitalk/gitalk.min.js
valine: /libs/valine/Valine.min.js # 若想保持最新版,请替换为 https://unpkg.com/valine/dist/Valine.min.js 默认为 /libs/valine/Valine.min.js
minivaline: /libs/minivaline/MiniValine.js # latest
waline: /libs/waline/Waline.min.js # 若想保持最新版,请替换为 https://cdn.jsdelivr.net/npm/@waline/client/dist/Waline.min.js 默认为(1.5.2版本) /libs/valine/Valine.min.js
twikoo: /libs/twikoo/twikoo.all.min.js # 若想保持最新版,请替换为 https://cdn.jsdelivr.net/npm/twikoo/dist/twikoo.all.min.js 默认为 /libs/twikoo/twikoo.all.min.js
jqcloud: /libs/jqcloud/jqcloud-1.0.4.min.js
tocbot: /libs/tocbot/tocbot.min.js
canvas_nest: /libs/background/canvas-nest.js
ribbon: /libs/background/ribbon.min.js
ribbonRefresh: /libs/background/ribbon-refresh.min.js
ribbon_dynamic: /libs/background/ribbon-dynamic.js
instantpage: /libs/instantpage/instantpage.js
mermaid: /libs/mermaid/mermaid.min.js
fancybox: /libs/fancybox/fancybox.js
justifiedGallery: /libs/justifiedGallery/justifiedGallery.min.js
prism: /libs/prism/prism.min.js
codeblock: /libs/codeBlock/codeBlockFuction.js
codelang: /libs/codeBlock/codeLang.js
codecopy: /libs/codeBlock/codeCopy.js
codeshrink: /libs/codeBlock/codeShrink.js
# The post featured images that needs to be displayed when there is no image.
# 无文章特色图片时需要显示的文章特色图片.
featureImages:
- /medias/featureimages/0.jpg
- /medias/featureimages/1.jpg
- /medias/featureimages/2.jpg
- /medias/featureimages/3.jpg
- /medias/featureimages/4.jpg
- /medias/featureimages/5.jpg
- /medias/featureimages/6.jpg
- /medias/featureimages/7.jpg
- /medias/featureimages/8.jpg
- /medias/featureimages/9.jpg
- /medias/featureimages/10.jpg
- /medias/featureimages/11.jpg
- /medias/featureimages/12.jpg
- /medias/featureimages/13.jpg
- /medias/featureimages/14.jpg
- /medias/featureimages/15.jpg
- /medias/featureimages/16.jpg
- /medias/featureimages/17.jpg
- /medias/featureimages/18.jpg
- /medias/featureimages/19.jpg
- /medias/featureimages/20.jpg
- /medias/featureimages/21.jpg
- /medias/featureimages/22.jpg
- /medias/featureimages/23.jpg
- /medias/featureimages/24.jpg
- /medias/featureimages/25.jpg
- /medias/featureimages/26.jpg
- /medias/featureimages/27.jpg
- /medias/featureimages/28.jpg
- /medias/featureimages/29.jpg
- /medias/featureimages/30.jpg
- /medias/featureimages/31.jpg
- /medias/featureimages/32.jpg
- /medias/featureimages/33.jpg
- /medias/featureimages/34.jpg
- /medias/featureimages/35.jpg
- /medias/featureimages/36.jpg
- /medias/featureimages/37.jpg
- /medias/featureimages/38.jpg
- /medias/featureimages/39.jpg
- /medias/featureimages/40.jpg
- /medias/featureimages/41.jpg
- /medias/featureimages/42.jpg
- /medias/featureimages/43.jpg
- /medias/featureimages/44.jpg
- /medias/featureimages/45.jpg
- /medias/featureimages/46.jpg
- /medias/featureimages/47.jpg
- /medias/featureimages/48.jpg
- /medias/featureimages/49.jpg
- /medias/featureimages/50.jpg
- /medias/featureimages/51.jpg
- /medias/featureimages/52.jpg
- /medias/featureimages/53.jpg
- /medias/featureimages/54.jpg
- /medias/featureimages/55.jpg
- /medias/featureimages/56.jpg
- /medias/featureimages/57.jpg
- /medias/featureimages/58.jpg
- /medias/featureimages/59.jpg
- /medias/featureimages/60.jpg
- /medias/featureimages/61.jpg
- /medias/featureimages/62.jpg
- /medias/featureimages/63.jpg
- /medias/featureimages/64.jpg
- /medias/featureimages/65.jpg
- /medias/featureimages/66.jpg
- /medias/featureimages/67.jpg
- /medias/featureimages/68.jpg
- /medias/featureimages/69.jpg
- /medias/featureimages/70.jpg
- /medias/featureimages/71.jpg
- /medias/featureimages/72.jpg
# default configs that the default policy for every articles/posts
# default 配置文章的默认转载规则
# you can define reprint policy for a single article in the front-matter of the specific md file using this key: reprintPolicy
# 您可以使用在文章md文件的 front-matter 中指定 reprintPolicy 来给单个文章配置转载规则
# 可用的转载规则有(available reprint policies are):
# 这些转载规则的意义请参考(you can refer to this link FMI):https://creativecommons.org/choose/?lang=zh
# cc_by(知识共享署名 4.0 国际许可协议 Creative Commons Attribution-NoDerivatives 4.0 International License)
# cc_by_nd(知识共享署名-禁止演绎 4.0 国际许可协议 Creative Commons Attribution-NoDerivatives 4.0 International License)
# cc_by_sa(知识共享署名-相同方式共享 4.0 国际许可协议 Creative Commons Attribution-ShareAlike 4.0 International License)
# cc_by_nc(知识共享署名-非商业性使用 4.0 国际许可协议 Creative Commons Attribution-NoDerivatives 4.0 International License)
# cc_by_nc_nd(知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议 Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License)
# cc_by_nc_sa(知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License)
# cc0(CC0 1.0 通用 (CC0 1.0) 公共领域贡献 CC0 1.0 Universal (CC0 1.0) Public Domain Dedication) https://creativecommons.org/publicdomain/zero/1.0/deed.zh
# noreprint(不允许转载 not allowed to reprint)
# pay(付费转载 pay for reprinting)
reprint:
enable: true # whether enable reprint section 是否启用“转载规则限定模块”
default: cc_by
# DaoVoice online contact
daovoice:
enable: false
app_id:
# Tidio online contact
tidio:
enable: false
public_key:
# 腾讯兔小巢,见https://txc.qq.com/
tuxiaochao:
enable: false
productId:
#背景canvas-nest
canvas_nest:
enable: false
color: 0,0,255 # 线条颜色, 默认: '0,0,0' ;三个数字分别为(R,G,B),注意用,分割
pointColor: 0,0,255 # 交点颜色, 默认: '0,0,0' ;三个数字分别为(R,G,B),注意用,分割
opacity: 0.7 # 线条透明度(0~1), 默认: 0.5
zIndex: -1 # 背景的 z-index 属性,css 属性用于控制所在层的位置, 默认: -1.
count: 99 # 线条的总数量, 默认: 99
# 背景静止彩带.
ribbon:
enable: false
size: 150 # 彩带大小, 默认: 90.
alpha: 0.6 # 彩带透明度 (0 ~ 1), 默认: 0.6.
zIndex: -1 # 背景的z-index属性,css属性用于控制所在层的位置, 默认: -1.
clickChange: false # 设置是否每次点击都更换彩带.
# 背景动态彩带.
ribbon_dynamic:
enable: false
# sharejs文章分享模块.
# 支持顺序,可选项目为twitter, facebook, google, qq, qzone, wechat, weibo, douban, linkedin.
sharejs:
enable: true
sites: qq,qzone,wechat,weibo,douban,google,linkedin,twitter,facebook
# addthis文章分享模块.
addthis:
enable: false
pubid: # 前往https://www.addthis.com/获取
# 打字效果副标题.
# 如果有符号 ‘ ,请在 ’ 前面加上 \
subtitle:
enable: true
loop: true # 是否循环
showCursor: true # 是否显示光标
startDelay: 300 # 开始延迟
typeSpeed: 100 # 打字速度
backSpeed: 50 # 删除速度
sub:
- 可以拥有一段糟糕的经历,但不能放纵自己度过糟糕的人生
- 命运只负责洗牌,出牌的永远都是我们自己
- 没有人能回到过去重新活过,但你我都可以从现在开始,决定我们未来的模样
- 面对热爱,要不遗余力的喜欢
- 不将就,是对生活最美的期待
- 幸福的反面不是痛苦,而是麻木、被动的生存状态
- We fall, we break, we fail. But then, we rise, we heal, we overcome
# 手机二级菜单.
navMenu:
mleft: false # 二级侧栏子菜单是否对齐左边
bgColor: " " # 二级侧栏子菜单背景颜色,留空即为全局背景色
# 网页预加载.
instantpage:
enable: true
# banner 是否每日切换.
# 若为 false, 则 banner 默认为 /medias/banner/0.jpg
banner:
enable: true
# 开启随机 featureimages 图片
random: false
# 中文繁简转换开关
# 显示在底部 footer 栏
translate:
enable: false
#ICP备案信息尾部显示
icp:
enable: false
url: # 备案链接
text: # 备案信息
# CDN访问加速
# 第一次使用本功能,一定要先配置url,再`hexo cl && hexo g && hexo d`部署到GitHub的仓库,注意!必须是GitHub的仓库!
# 如果必须要使用国内的coding或者gitee,可以采用双部署,同时将网站部署到两个仓库(其中一个必须是GitHub的仓库)
# URL配置规则(例子如下): https://cdn.jsdelivr.net/gh/你的GitHub用户名/你的仓库名
# 如果想关闭此功能,将 url地址 注释或删除即可!
#
# 注:配置了此项,就代表着本地调试的时候,网站依然会去GitHub请求资源(原来的资源),本地调试的时候记得将 此项配置 注释或者删除掉
# 更多关于访问速度优化,请查看:https://blog.sky03.cn/posts/42790.html
# 注:jsdelivr可以自动帮你生成.min版的js和css,所以你在上面设置js及css路径中可以直接写.min.xxx
jsDelivr:
url: # https://cdn.jsdelivr.net/gh/skyls03/skyls03.github.io
# 网站背景图
background:
enable: false
url: "https://w.wallhaven.cc/full/p9/wallhaven-p9op59.jpg"
# 说说 https://artitalk.js.org/
# TODO 以后必然要弄的,做一个“微语”
artitalk:
enable: false
appId: # xxxxx
appKey: # xxxxxx
# 哔哔功能配置
# 登陆leancloud创建应用。进入应用后,点击创建 Class,将「 Class 名称」命名为 content
# 点击刚刚创建的content Class,点击添加列并创建名称为content的列,类型为String,注意列注释也要填写(随意填)
# 记录appid,masterkey,api域名
# 输入:hexo new page bb
# hexo就在source文件夹下创建了bb/index.md。
# 修改index.md的frontmater下的layout为bb:
# ---
# title: 黑石说
# layout: bb
# ---
# 里面的文字可以自己随意加,会显示在哔哔的上方。
# 关注公众号 "黑石哔哔",发送: //bindCurrentUser:你的APPID,你的MASTERKEY,你的RESTAPI
# 可用leancloud国际版,国际版api为 https://appid前八位.api.lncldglobal.com
bbtime:
enable: false
appId: # 你的appId
appKey: # 你的appKey
serverURLs: # https://你的api
# 图表绘制插件
# 建议更换更换hexo-renderer-markdown-it引擎。参考下面链接
# https://github.com/hexojs/hexo-renderer-markdown-it
# https://github.com/hexojs/hexo-renderer-markdown-it/wiki/Advanced-Configuration
# 使用教程: https://blog.17lai.site/posts/cf0f47fd/#Mermaid
# 安装配置方法
# yarn remove hexo-renderer-marked
# yarn add hexo-renderer-markdown-it hexo-tag-mermaid
# 注意:hexo-renderer-markdown-it 比默认引擎更快,可选择插件较多,请认真看上面两个链接教程。
# mermaid语法教程 https://mermaid-js.github.io/mermaid/#/
# 使用方法:
# 在post文章中填写mermaid语句,需要使用{% mermaid %} 包裹
# {% mermaid %}
# [mermaid 语句正文]
# {% endmermaid %}
# 样例如下所示:
# {% mermaid %}
# graph TD
# A[Christmas] -->|Get money| B(Go shopping)
# B --> C{Let me think}
# C -->|One| D[Laptop]
# C -->|Two| E[iPhone]
# C -->|Three| F[Car]
# {% endmermaid %}
# mermaid chart。 依赖hexo-tag-mermaid
mermaid: ## mermaid url https://github.com/knsv/mermaid
enable: false # default false
version: "latest" # default v7.1.2
options: # find more api options from https://github.com/knsv/mermaid/blob/master/src/mermaidAPI.js
#startOnload: true // default true