generated from gavinblog/blog-anzhiyu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.anzhiyu.yml
1597 lines (1410 loc) · 49.5 KB
/
_config.anzhiyu.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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
menu:
🏠: https://miku8miku.github.io/miku8miku/ || anzhiyu-icon-link
# AI:
# 自建ChatGPT: http://chatgpt.geekswg.top/ || anzhiyu-icon-link
# Stable Diffusion Online: https://stablediffusionweb.com/ || anzhiyu-icon-link
# 文心一言: https://yiyan.baidu.com/ || anzhiyu-icon-link
# 文心一格: https://yige.baidu.com/ || anzhiyu-icon-link
# WPS-AI: https://ai.wps.cn/ || anzhiyu-icon-link
# 导航:
# 博客-Hugo: https://geekswg.top || anzhiyu-icon-link
# 博客-Hexo: https://hexo.geekswg.top || anzhiyu-icon-link
# 51网页统计: https://v6.51.la/report/overview?comId=287570 || anzhiyu-icon-link
# Github监控: https://www.githubstatus.com/ || anzhiyu-icon-link
博客:
文章: /archives/ || anzhiyu-icon-box-archive
分类: /categories/ || anzhiyu-icon-shapes
标签: /tags/ || anzhiyu-icon-tags
统计: /charts/ || fa-solid fa-chart-pie fa-spin
# 文档: /anzhiyu-docs/ || anzhiyu-icon-book
友链:
友人帐: /link/ || anzhiyu-icon-link
朋友圈: /fcircle/ || anzhiyu-icon-artstation
留言板: /comments/ || anzhiyu-icon-envelope
我的:
# About: /about/ || anzhiyu-icon-paper-plane
# 友人帐: /link/ || anzhiyu-icon-link
# 朋友圈: /fcircle/ || anzhiyu-icon-artstation
# 留言板: /guestbook/ || anzhiyu-icon-envelope
说说: /essay/ || anzhiyu-icon-lightbulb
# 相册集: /album/ || anzhiyu-icon-images
小空调: /air-condition/ || anzhiyu-icon-fan
# 追番页: /bangumis/ || anzhiyu-icon-bilibili
# 音乐: /music/?id=8138088068&server=tencent || anzhiyu-icon-music
# 🌐: /sites/all-sites || anzhiyu-icon-shoe-prints1
#关于:
# 关于本人: /about/ || anzhiyu-icon-paper-plane
# 闲言碎语: /essay/ || anzhiyu-icon-lightbulb
# 随便逛逛: javascript:toRandomPost() || anzhiyu-icon-shoe-prints1
🌐: /about/ || anzhiyu-icon-shoe-prints1
# nav相关配置
nav:
enable: true
travelling: true
clock: true # 左上角天气挂件开关
menu:
# - title: 站点
# item:
# - name: 个人主页
# link: https://home.geekswg.top/
# icon: /imgs/avatar.webp # /img/favicon.png
# - name: 个人导航
# link: https://nav.geekswg.top/
# icon: /imgs/avatar.webp # /img/favicon.png
# - name: 博客-Hugo
# link: https://geekswg.js.cool/
# icon: /imgs/avatar.webp # /img/favicon.png
# - name: 博客-Hexo
# link: http://hexo.geekswg.top/
# icon: /imgs/avatar.webp
- title: 常用网址
item:
- name: 在线工具
link: https://tool.lu/
icon: https://bu.dusays.com/2021/01/15/9dffeadb5180f.png
- name: 免费图床-Picx
link: https://gavinblog.github.io/picx/#/upload #自己搭建的凸窗
icon: https://bu.dusays.com/2021/01/15/3352de022c475.png
- title: AI大模型
item:
- name: ChatGPT
link: https://chat.openai.com/
icon: https://bu.dusays.com/2021/01/15/9ea7dfea95cf4.png
- name: AutoChatGPT
link: https://github.com/7flash/AutoChatGPT
icon: https://bu.dusays.com/2021/01/15/d1c6f949758f3.png
- name: Bing-图像创建者
link: https://bing.com/create
icon: https://bu.dusays.com/2021/01/15/32f3ba22ad4a5.png
- name: Stable Diffusion Online
link: https://stablediffusionweb.com/
icon: https://bu.dusays.com/2021/01/15/419f76ab77d0c.png
- name: 文心一言
link: https://yiyan.baidu.com/
icon: https://bu.dusays.com/2021/01/15/04105fc2e996c.png
- name: 文心一格
link: https://yige.baidu.com/
icon: https://bu.dusays.com/2021/01/15/fd881908237ee.png
- name: 讯飞星火
link: https://xinghuo.xfyun.cn/
icon: https://bu.dusays.com/2021/01/15/72754ca21b688.png
# Code Blocks (代码相关)
# --------------------------------------
# 代码块设置 , 主题
highlight_theme: mac light # darker / pale night / light / ocean / mac / mac light / false
highlight_copy: true # copy button
highlight_lang: true # show the code language
highlight_shrink: false # true: shrink the code blocks / false: expand the code blocks | none: expand code blocks and hide the button
highlight_height_limit: 512 # unit: px #代码折叠高度
code_word_wrap: true #自动换行
# copy settings 版权信息
# copyright: Add the copyright information after copied content (複制的内容后面加上版权信息)
copy:
enable: true
copyright:
enable: true
limit_count: 128
# social settings (社交图标设置)
# formal:
# icon: link || the description || Animation
social:
Github: https://github.com/miku8miku || anzhiyu-icon-github
Email: mailto://[email protected] || anzhiyu-icon-envelope
#RSS: atom.xml || anzhiyu-icon-rss
BiliBili: https://space.bilibili.com/32088873 || anzhiyu-icon-bilibili
# QQ: tencent://Message/?Uin=1101303970&websiteName=local.edu.com:8888=&Menu=yes || anzhiyu-icon-qq
# 作者状态
author_status:
enable: true
# status: ✍️
# alias: writing_hand
# fallback_src: https://github.githubassets.com/images/icons/emoji/unicode/270d.png
# text: on Studying
# 可以是任何图片,建议放表情包或者emoji图片,效果都很好,[表情包速查](https://emotion.xiaokang.me/)
statusImg: "https://bu.dusays.com/2021/01/15/0d01983ac5127.png"
skills:
- 🤖️ 数码科技爱好者
- 🔍 分享与热心帮助
- 🏠 智能家居小能手
- 🔨 设计开发一条龙
- 🤝 专修交互与设计
- 🏃 脚踏实地行动派
# search (搜索)
# see https://butterfly.js.org/posts/ceeb73f/#搜索系统
# --------------------------------------
# Algolia search
algolia_search:
enable: false
hits:
per_page: 6
# Local search
local_search:
enable: true
preload: true
CDN:
# Math (数学)
# --------------------------------------
# About the per_page
# if you set it to true, it will load mathjax/katex script in each page (true 表示每一页都加载js)
# if you set it to false, it will load mathjax/katex script according to your setting (add the 'mathjax: true' in page's front-matter)
# (false 需要时加载,须在使用的 Markdown Front-matter 加上 mathjax: true)
# MathJax
mathjax:
enable: false
per_page: false
# KaTeX
katex:
enable: false
per_page: false
hide_scrollbar: true
# Image (图片设置)
# --------------------------------------
# Favicon(网站图标)
favicon: /favicon.ico
# Avatar (头像)
avatar:
img: https://bu.dusays.com/2021/01/15/de0b46f01a053.png
effect: true # 头像一直旋转
# Disable all banner image
disable_top_img: false
# The banner image of home page
# 首页图片,这里控制了,一图流的开关,BUG,false-不显示,配置图片后
# 注意这里的值是 style="{}" {}这个值
index_img: "background:url(/imgs/bg-main.webp) no-repeat center;background-size:cover;"
# index_img: https://bu.dusays.com/2021/01/15/c824eadfe0153.png
# If the banner of page not setting, it will show the top_img
default_top_img: https://bu.dusays.com/2021/01/15/c824eadfe0153.png
# >=1.4.0移除
# # The banner image of archive page
# archive_img: false
# # If the banner of tag page not setting, it will show the top_img
# # note: tag page, not tags page (子标籤页面的 top_img)
# tag_img: /imgs/t.webp
# # The banner image of tag page
# # format:
# # - tag name: xxxxx
# tag_per_img: /imgs/t.webp
# # If the banner of category page not setting, it will show the top_img
# # note: category page, not categories page (子分类页面的 top_img)
# category_img: /imgs/t.webp
# # The banner image of category page
# # format:
# # - category name: xxxxx
# category_per_img: /imgs/t.webp
cover:
# display the cover or not (是否显示文章封面)
index_enable: true
aside_enable: true
archives_enable: true
# the position of cover in home page (封面显示的位置)
# left/right/both
position: left
# When cover is not set, the default cover is displayed (当没有设置cover时,默认的封面显示)
default_cover: # 默认封面
#- /imgs/default-cover.webp
#- /imgs/t1.webp
#- /imgs/t2.webp
#- /imgs/zhifeiji.gif
#- /imgs/bg-main.webp
- /imgs/qsmy/qsmy-1.webp
- /imgs/qsmy/qsmy-2.webp
- /imgs/qsmy/qsmy-3.webp
- /imgs/qsmy/qsmy-4.webp
- /imgs/qsmy/qsmy-5.webp
- /imgs/qsmy/qsmy-6.webp
- /imgs/qsmy/qsmy-7.webp
- /imgs/qsmy/qsmy-8.webp
- /imgs/qsmy/qsmy-9.webp
- /imgs/qsmy/qsmy-10.webp
- /imgs/qsmy/qsmy-11.webp
- /imgs/qsmy/qsmy-12.webp
- /imgs/qsmy/qsmy-13.webp
- /imgs/qsmy/qsmy-14.webp
- /imgs/qsmy/qsmy-15.webp
- /imgs/qsmy/qsmy-16.webp
- /imgs/qsmy/qsmy-17.webp
- /imgs/qsmy/qsmy-18.webp
# Replace Broken Images (替换无法显示的图片)
error_img:
flink: /img/friend_404.gif
post_page: /img/404.jpg
# A simple 404 page
error_404:
enable: true
subtitle: "请尝试站内搜索寻找文章"
background: /imgs/404.gif
post_meta:
page: # Home Page
date_type: created # created or updated or both 主页文章日期是创建日或者更新日或都显示
date_format: simple # date/relative 显示日期还是相对日期 simple
categories: true # true or false 主页是否显示分类
tags: true # true or false 主页是否显示标籤
label: false # true or false 显示描述性文字
post:
date_type: both # created or updated or both 文章页日期是创建日或者更新日或都显示
date_format: date # date/relative 显示日期还是相对日期
categories: true # true or false 文章页是否显示分类
tags: true # true or false 文章页是否显示标籤
label: true # true or false 显示描述性文字
#mainTone: true # true or false 文章顶部图片是否使用主色调
unread: true # true or false 文章未读功能
# 主色调相关配置 >1.4.2
mainTone:
enable: true # true or false 文章是否启用获取图片主色调
mode: api # cdn/api/both cdn模式为图片url+imageAve参数获取主色调,api模式为请求API获取主色调,both模式会先请求cdn参数,无法获取的情况下将请求API获取
# 项目地址:https://github.com/anzhiyu-c/img2color-go
# https://api.qjqq.cn/api/Imgcolor?img=URL
api: https://api.qjqq.cn/api/Imgcolor?img= # mode为api时可填写
cover_change: true
# wordcount (字数统计)
# see https://butterfly.js.org/posts/ceeb73f/#字数统计
wordcount:
enable: true
post_wordcount: true
min2read: true
total_wordcount: true
# Display the article introduction on homepage
# 1: description
# 2: both (if the description exists, it will show description, or show the auto_excerpt)
# 3: auto_excerpt (default)
# false: do not show the article introduction
index_post_content:
method: 2
length: 128 # if you set method to 2 or 3, the length need to config
# anchor
# when you scroll in post, the URL will update according to header id.
anchor: true
# Post
# --------------------------------------
# toc (目录)
toc:
post: true
page: true
number: true
expand: true
style_simple: false # for post
# 文章版权信息
post_copyright:
enable: false
decode: true
author_href: https://geekswg.js.cool
location: 神州大地
license: CC BY-NC-SA 4.0
license_url: https://creativecommons.org/licenses/by-nc-sa/4.0/
# >1.4.2
avatarSinks: true # hover时头像下沉
copyright_author_img_back:
copyright_author_img_front:
copyright_author_link: /about
#打赏信息
# Sponsor/reward
reward:
enable: false
coinAudio: /imgs/reward/aowu.m4a
QR_code:
- img: /imgs/reward/alipay.webp
link:
text: alipay
- img: /imgs/reward/wechat.webp
link:
text: wechat
# Post edit 文章编辑
# Easily browse and edit blog source code online.
post_edit:
enable: true
# url: https://github.com/user-name/repo-name/edit/branch-name/subdirectory-name/
# For example: https://github.com/jerryc127/butterfly.js.org/edit/main/source/
url: https://github.com/miku8miku/blog/edit/master/source/
# Related Articles 相关文章推荐
related_post:
enable: true
limit: 6 # Number of posts displayed
date_type: created # or created or updated 文章日期显示创建日或者更新日
# figcaption (图片描述文字)
photofigcaption: true
# post_pagination (分页)
# value: 1 || 2 || 3 || false
# 1: The 'next post' will link to old post
# 2: The 'next post' will link to new post
# 3: 只有下一篇,并且只在文章滚动到评论区时显示下一篇文章(新文章)
# false: disable pagination
post_pagination: 3
# Displays outdated notice for a post (文章过期提醒)
noticeOutdate:
enable: true
style: simple # style: simple/flat
limit_day: 180 # When will it be shown
position: top # position: top/bottom
message_prev: It has been
message_next: days since the last update, the content of the article may be outdated.
# Share System (分享功能)
# --------------------------------------
# AddThis 移除>=1.4.2
# https://www.addthis.com/
# addThis:
# enable: false
# pubid:
# Share.js
# https://github.com/overtrue/share.js
sharejs:
enable: true
sites: wechat,weibo,qq,facebook,twitter
# AddToAny
# https://www.addtoany.com/
addtoany:
enable: true
item: wechat,sina_weibo,email,copy_link,facebook,twitter
# Comments System 评论插件
# --------------------------------------
comments:
# Up to two comments system, the first will be shown as default
# Choose: Valine/Waline/Twikoo/Artalk
use: twikoo # Twikoo,Waline # 评论插件 Valine/Waline/Twikoo/Artalk
text: true # Display the comment name next to the button
# lazyload: The comment system will be load when comment element enters the browser's viewport.
# If you set it to true, the comment count will be invalid
lazyload: false
count: true # Display comment count in post's top_img
card_post_count: true # Display comment count in Home Page
# Twikoo
# https://github.com/imaegoo/twikoo
twikoo:
# https://railway.app/ 部署
# https://dash.zeabur.com/ zeabur部署 推荐国内可直接访问,不过现在已限额
# https://vercel.com/dashboard 推荐vercel,国内需要绑定自己的域名才能正常访问。
envId: https://twikoo.geekswg.top # https://twikoo-railway.up.railway.app
region:
visitor: true
option:
# valine
# https://valine.js.org
valine:
appId: xxxxx # leancloud application app id
appKey: xxxxx # leancloud application app key
pageSize: 10 # comment list page size
avatar: mp # gravatar style https://valine.js.org/#/avatar
lang: zh-CN # i18n: zh-CN/zh-TW/en/ja
placeholder: 填写QQ邮箱就会使用QQ头像喔~. # valine comment input placeholder (like: Please leave your footprints)
guest_info: nick,mail,link # valine comment header info (nick/mail/link)
recordIP: false # Record reviewer IP
serverURLs: # This configuration is suitable for domestic custom domain name users, overseas version will be automatically detected (no need to manually fill in)
bg: /img/comment_bg.png # valine background
emojiCDN: //i0.hdslb.com/bfs/emote/ # emoji CDN
enableQQ: true # enable the Nickname box to automatically get QQ Nickname and QQ Avatar
requiredFields: nick,mail # required fields (nick/mail)
visitor: false
master:
- xxxxx
friends:
- xxxxxx
tagMeta: "博主,小伙伴,访客"
option:
# waline 评论插件配置
# waline - A simple comment system with backend support fork from Valine
# https://waline.js.org/ https://waline.geekswg.top
waline:
serverURL: https://waline.geekswg.top # https://geek-waline.zeabur.app # Waline server address url
bg: /imgs/zhifeiji.gif # waline background
pageview: true
# 以下为可选配置,后续若有新增/修改配置参数可在此自行添加/修改
option:
pageSize: 10
requiredMeta: ["nick", "mail"]
login: enable
copyright: true
# turnstileKey:
locale:
admin: 安知鱼
sofa: 欢迎使用 安知鱼 主题!
placeholder: "生活明朗,万物可爱"
# reactionTitle: 就现在,表明你的态度!
# reaction0: 0
# reaction1: 1
# reaction2: 2
# reaction3: 3
# reaction4: 4
# reaction5: 5
# level0: 0
# level1: 1
# level2: 2
# level3: 3
# level4: 4
# level5: 5
# level6: 6
# level7: ...
# emoji:
# [
# "https://example.com/.../Sticker-100/",
# ]
# reaction:
# [
# "https://example.com/.../Sticker-100/0.png",
# "https://example.com/.../Sticker-100/1.png",
# "https://example.com/.../Sticker-100/2.png",
# "https://example.com/.../Sticker-100/3.png",
# "https://example.com/.../Sticker-100/4.png",
# "https://example.com/.../Sticker-100/5.png",
# ]
# Artalk
# https://artalk.js.org/guide/frontend/config.html
artalk:
server:
site:
visitor: false
option:
# Chat Services
# --------------------------------------
# Chat Button [recommend]
# It will create a button in the bottom right corner of website, and hide the origin button
chat_btn: false
# The origin chat button is displayed when scrolling up, and the button is hidden when scrolling down
chat_hide_show: false
# chatra
# https://chatra.io/
chatra:
enable: false
id: GLzsvy6qAitQ9QoHA
# tidio
# https://www.tidio.com/
tidio:
enable: false
public_key:
# daovoice
# http://daovoice.io/
daovoice:
enable: false
app_id:
# crisp
# https://crisp.chat/en/
crisp:
enable: false
website_id:
# 页脚配置
# Footer Settings
# --------------------------------------
footer:
owner:
enable: true
since: 2024
custom_text: # CopyRight @ geekswg 2006 ~ Now
runtime:
enable: true
launch_time: 06/20/2024 15:04:05 # 网站上线时间
work_img: https://bu.dusays.com/2021/01/15/a3d81a0d0a19c.png
#https://npm.elemecdn.com/[email protected]/img/badge/安知鱼-上班摸鱼中.svg
work_description: 但行好事,莫问前程
offduty_img: https://bu.dusays.com/2021/01/15/2ed466b049952.png # https://tool.lu/netcard/ /imgs/gif/yinyang.gif
#https://npm.elemecdn.com/[email protected]/img/badge/安知鱼-下班啦.svg
offduty_description: 天高任鸟飞,海阔凭鱼跃
# 徽标部分配置项 https://shields.io/
# https://img.shields.io/badge/CDN-jsDelivr-orange?style=flat&logo=jsDelivr
bdageitem:
enable: true
list:
- link:
shields: https://img.shields.io/badge/Blog-KB-yellow
message: 主页
- link: https://github.com/gavinblog/blog-anzhiyu
shields: https://npm.elemecdn.com/[email protected]/img/badge/Source-Github.svg
message: 本站项目由Github托管
- link: https://hexo.io/ #徽标指向网站链接
shields: https://npm.elemecdn.com/[email protected]/img/badge/Frame-Hexo.svg #徽标API
message: 博客框架为Hexo_v5.4.0 #徽标提示语
- link: https://github.com/anzhiyu-c/hexo-theme-anzhiyu.git
shields: https://img.shields.io/badge/Hexo--Theme-Anzhiyu-green
message: 本站使用AnZhiYu主题
# - link: https://www.dogecloud.com/
# shields: https://npm.elemecdn.com/[email protected]/img/badge/CDN-多吉云-3693F3.svg
# message: 本站使用多吉云为静态资源提供CDN加速
- link: http://creativecommons.org/licenses/by-nc-sa/4.0/
shields: https://npm.elemecdn.com/[email protected]/img/badge/Copyright-BY-NC-SA.svg
message: 本站采用知识共享署名-非商业性使用-相同方式共享4.0国际许可协议进行许可
socialBar: #底部导航栏
enable: true
# /imgs/gif/cat.gif /imgs/gif/pinwheel-64.gif
centerImg: https://bu.dusays.com/2021/01/15/dcf30b34409bc.png # 这里的逻辑是,当前设置 > 默认头像
left:
# - title: 主页
# link: https://home.geekswg.top
# icon: anzhiyufont anzhiyu-icon-paper-plane
- title: email
link: mailto:[email protected]
icon: anzhiyufont anzhiyu-icon-envelope
- title: Github
link: https://github.com/miku8miku
icon: anzhiyufont anzhiyu-icon-github
# - title: 微博
# link: https://weibo.com/u/123456
# icon: anzhiyufont anzhiyu-icon-weibo
#- title: facebook
# link: https://www.facebook.com/profile.php?id=100092208016288&sk=about
# icon: anzhiyufont anzhiyu-icon-facebook1
right:
- title: Bilibili
link: https://space.bilibili.com/39865904
icon: anzhiyufont anzhiyu-icon-bilibili
- title: 抖音
link: https://www.douyin.com/user/MS4wLjABAAAA7wEzz2PEAVqUc8bQxcCPGOV9r1zmjMooBHGKcVuP1Es
icon: anzhiyufont anzhiyu-icon-tiktok
list:
enable: true
randomFriends: 3
project:
- title: 服务
links:
# - title: 51la统计
# link:
- title: 十年之约
link: https://www.foreverblog.cn/
- title: 开往
link: https://github.com/travellings-link/travellings
- title: 导航
links:
- title: 个人主页
link:
- title: ChatGPT
link:
- title: 站点监测
link:
- title: 主题
links:
- title: 模板仓库
link: https://github.com/gavinblog/blog-anzhiyu
- title: 主题文档
link: https://gavinblog.github.io/anzhiyu-docs/
- title: 更新日志
link: https://github.com/anzhiyu-c/hexo-theme-anzhiyu/releases
#- title: 导航
# links:
# - title: 即刻短文
# link: /essay/
# - title: 友链文章
# link: /fcircle/
# - title: 留言板
# link: /comments/
#- title: 协议 #协议学要自己写页面,我直接注释了
# links:
# - title: 隐私协议
# link: /privacy/
# - title: Cookies
# link: /cookies/
# - title: 版权协议
# link: /copyright/
# 新页脚
footerBar:
enable: true
authorLink: /
cc:
enable: true
link: /about
linkList:
- link:
text: 主页
- link:
text: 导航
- link:
text: 源码
- link:
text: 文档
- link:
text: 访客
# - link: https://image.anheyu.com
# text: 图床
#- link: https://beian.miit.gov.cn/
# text: 湘ICP备-xxxxxxx号
subTitle:
enable: true
# Typewriter Effect (打字效果)
effect: true
# Effect Speed Options (打字效果速度参数)
startDelay: 300 # time before typing starts in milliseconds
typeSpeed: 150 # type speed in milliseconds
backSpeed: 50 # backspacing speed in milliseconds
# loop (循环打字)
loop: true
# source 调用第三方服务
# source: false 关闭调用
# source: 1 调用一言网的一句话(简体) https://hitokoto.cn/
# source: 2 调用一句网(简体) http://yijuzhan.com/
# source: 3 调用今日诗词(简体) https://www.jinrishici.com/
# subtitle 会先显示 source , 再显示 sub 的内容
source: false
# 如果关闭打字效果,subtitle 只会显示 sub 的第一行文字
sub:
- "但行好事,莫问前程。"
- "Talk Is Cheap, Show Me the Code."
# Analysis
# --------------------------------------
# Baidu Analytics
# https://tongji.baidu.com/web/welcome/login
# https://tongji.baidu.com/main/setting/10000222384/home/site/getjs?siteId=19268804
baidu_analytics:
# Google Analytics
# https://analytics.google.com/analytics/web/
# https://analytics.google.com/analytics/web/#/a273233182p383309901/admin/streams/table/
google_analytics:
# CNZZ Analytics
# https://www.umeng.com/
cnzz_analytics:
# Cloudflare Analytics
# https://www.cloudflare.com/zh-tw/web-analytics/
cloudflare_analytics:
# Microsoft Clarity
# https://clarity.microsoft.com/
# https://clarity.microsoft.com/projects
microsoft_clarity:
# Advertisement
# --------------------------------------
# Google Adsense (谷歌广告)
google_adsense:
enable: false
auto_ads: true
js:
client:
enable_page_level_ads: true
# Insert ads manually (手动插入广告)
# ad:
# index:
# aside:
# post:
# Verification (站长验证)
# --------------------------------------
#
site_verification:
# https://www.bing.com/webmasters/?siteUrl=https%3A%2F%2Fhexo.geekswg.top
- name: google-site-verification
content: zdB7aP6RvrvD3vHDMiBCw88fHYFi6pWHVgy4OruU6ZI
# https://ziyuan.baidu.com/site/siteverify?id=1377991315#/
- name: baidu-site-verification
content: codeva-h6TRQ4og6W
# https://www.bing.com/webmasters/?siteUrl=https://hexo.geekswg.top&state=verifySite
- name: msvalidate.01
content: A1131C8FE475E0378A8D237741CD7850
# Beautify/Effect (美化/效果)
# --------------------------------------
# Theme color for customize
# Notice: color value must in double quotes like "#000" or may cause error!
# 主题色配置
theme_color:
enable: true
#cover_change: true >1.4.2移动
#"#3b70fc" # #3b70fc
main: "#b04dff"
dark_main: "transparent" #
paginator: "#3b70fc"
# button_hover: "#FF7242"
text_selection: "#2128bd"
link_color: "var(--anzhiyu-fontcolor)"
meta_color: "var(--anzhiyu-fontcolor)"
hr_color: "#4259ef23"
code_foreground: "#fff"
code_background: "var(--anzhiyu-code-stress)"
toc_color: "#3b70fc"
# blockquote_padding_color: "#3b70fc"
# blockquote_background_color: "#3b70fc"
scrollbar_color: "var(--anzhiyu-scrollbar)"
meta_theme_color_light: "#f7f9fe"
meta_theme_color_dark: "#18171d"
#inside_sidebar_background: "#607d8b"
# 移动端侧栏 @since 1.5.4
sidebar:
site_data:
archive: true
tag: true
category: true
menus_items: true
tags_cloud: true
display_mode: true
nav_menu_project: true
# 文章h2添加分隔线
h2Divider: true
# 表格隔行变色
table_interlaced_discoloration: true
# 首页双栏显示
article_double_row: true
# 双栏文章
butterfly_article_double_row:
enable: true
# The top_img settings of home page
# default: top img - full screen, site info - middle (默认top_img全屏,site_info在中间)
# The position of site info, eg: 300px/300em/300rem/10% (主页标题距离顶部距离)
index_site_info_top:
# The height of top_img, eg: 300px/300em/300rem (主页top_img高度)
index_top_img_height:
# The user interface setting of category and tag page (category和tag页的UI设置)
# index - same as Homepage UI (index 值代表 UI将与首页的UI一样)
# default - same as archives UI 默认跟archives页面UI一样
category_ui: # 留空或 index
tag_ui: # 留空或 index
# Footer Background
footer_bg: false
# the position of bottom right button/default unit: px (右下角按钮距离底部的距离/默认单位为px)
rightside-bottom: 100px
# Enter transitions (开啓网页进入效果) - 无用配置
#网页开始效果 开启后 下面部分功能才能使用
enter_transitions: true
# Background effects (背景特效)
# --------------------------------------
# canvas_ribbon (静止彩带背景)
# See: https://github.com/hustcc/ribbon.js
canvas_ribbon:
enable: false
size: 150
alpha: 0.5
zIndex: 9999
click_to_change: true
mobile: false
# Fluttering Ribbon (动态彩带)
canvas_fluttering_ribbon:
enable: true
mobile: false
# canvas_nest
# https://github.com/hustcc/canvas-nest.js
canvas_nest:
enable: true
color: "0,0,255" #color of lines, default: '0,0,0'; RGB values: (R,G,B).(note: use ',' to separate.)
opacity: 1 # the opacity of line (0~1), default: 0.5.
zIndex: -1 # z-index property of the background, default: -1.
count: 99 # the number of lines, default: 99.
mobile: false
# Typewriter Effect (打字效果)
# https://github.com/disjukr/activate-power-mode
activate_power_mode:
enable: true
colorful: true # open particle animation (冒光特效)
shake: true # open shake (抖动特效)
mobile: false
# Mouse click effects: fireworks (鼠标点击效果: 烟火特效)
fireworks:
enable: true
zIndex: 9999 # -1 or 9999
mobile: false
# Mouse click effects: Heart symbol (鼠标点击效果: 爱心)
click_heart:
enable: true
mobile: true
# Mouse click effects: words (鼠标点击效果: 文字)
ClickShowText:
enable: true
text:
- I
- LOVE
- YOU
fontSize: 15px
random: false
mobile: true
# Default display mode (网站默认的显示模式)
# light (default) / dark
display_mode: dark
# Beautify (美化页面显示)
beautify:
enable: true
field: post # site/post
title-prefix-icon: '\f0c1'
title-prefix-icon-color: "#F47466"
# Global font settings
# Don't modify the following settings unless you know how they work (非必要不要修改)
font:
global-font-size: 16px
code-font-size:
font-family: consolas
code-font-family: consolas, Menlo, "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif
# Font settings for the site title and site subtitle
# 左上角网站名字 主页居中网站名字
blog_title_font:
font_link:
font-family: PingFang SC, 'Hiragino Sans GB', 'Microsoft JhengHei', 'Microsoft YaHei', sans-serif
# The setting of divider icon (水平分隔线图标设置)
hr_icon:
enable: true
icon: \f0c4 # the unicode value of Font Awesome icon, such as '\f0c4'
icon-top:
# the subtitle on homepage (主页subtitle)
# index_img 配置了才显示。
subtitle:
enable: true
# Typewriter Effect (打字效果)
effect: true
# Effect Speed Options (打字效果速度参数)
startDelay: 300 # time before typing starts in milliseconds
typeSpeed: 150 # type speed in milliseconds
backSpeed: 30 # backspacing speed in milliseconds
# loop (循环打字)
loop: true
# source 调用第三方服务
# source: false 关闭调用
# source: 1 调用一言网的一句话(简体) https://hitokoto.cn/
# source: 2 调用一句网(简体) http://yijuzhan.com/
# source: 3 调用今日诗词(简体) https://www.jinrishici.com/
# subtitle 会先显示 source , 再显示 sub 的内容
source: false
# 如果关闭打字效果,subtitle 只会显示 sub 的第一行文字
sub:
- 莫笑少年江湖梦,谁不少年梦江湖。曾经年少立志三千里,如今踌躇百步无寸功。
- 欲买桂花同载酒,终不似,少年游。少年游,初学禅,犹带净瓶步入尘。
- 心仍少,皱纹却上眉目中,浮生醉酒回梦里。青春人依旧,只叹时光太匆匆!
# Loading Animation (加载动画)
preloader: #预加载界面
enable: true
# source
# 1. fullpage-loading
# 2. pace (progress bar)
# else all
source: 3
# pace theme (see https://codebyzach.github.io/pace/)
pace_css_url:
# /imgs/avatar.webp # 自定义头像 /imgs/loading/loading.gif
avatar: /imgs/loading/loading-2.gif
# aside (侧边栏)
# --------------------------------------
# 作者信息配置
aside:
enable: true
hide: false
button: true
mobile: true # display on mobile
position: left # left or right
# 控制对应详情页面是否显示侧边栏
display:
archive: true
tag: true
category: false
card_author:
enable: true
#type: 1 # 1为使用头像card 2为不适用头像card #使用头像 description无效
description: 人生得意须尽欢,莫使金樽空对月
name_link: /about
card_announcement:
enable: true
content: '<div id="welcome-info"></div>'
#微信公众号
card_weixin:
enable: true
face: https://tool.lu/netcard/ #图1
backFace: /imgs/default/cover3.webp #图2
card_recent_post:
enable: true