forked from qinhua/halo-theme-joe2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.yaml
3350 lines (3327 loc) · 100 KB
/
settings.yaml
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
# 基本设置
genernal:
label: 基本设置
items:
# enable_splash:
# name: enable_splash
# label: 开启首页欢迎界面
# type: switch
# data-type: bool
# default: true
# description: "是否展示首页的欢迎界面"
# options:
# - value: true
# label: 是
# - value: false
# label: 否
# i18n:
# name: i18n
# label: 主题语言
# type: select
# default: auto
# options:
# - value: auto
# label: 自动
# - value: zh
# label: 中文
# - value: en
# label: 英文
access_key:
name: access_key
label: AccessKey <必填>
type: text
default: "joe2.0"
placeholder: "请务必与后台中的Key一致"
description: "Access Key 用于页面中 Content API 的校验,不填会导致接口报错,默认为 joe2.0,但可以自己定义,请不要填写中文或特殊字符(请务必同时配置此处的 Access Key 和后台管理中的 Access Key,并保持一致)"
icp:
name: icp
label: ICP 备案号
type: text
default: ""
placeholder: "请填写 ICP 备案号信息"
description: "ICP 备案信息将展示在页脚中,不填不展示(示例:鄂ICP备20001234号-1)"
police:
name: police
label: 公网安备号
type: text
default: ""
placeholder: "请填写公网安备号信息"
description: "公网安备信息将展示在页脚中,不填不展示,也可在 “页脚” 一栏中单独关闭(示例:鄂公网安备42011102001234号)"
site_notice:
name: site_notice
label: 网站公告
type: textarea
placeholder: 请输入公告信息
description: "网站公告信息,将展示在页面右侧,尽量简洁明了(不填不展示该模块,也可单独开关)"
baidu_statistic:
name: baidu_statistic
label: 统计代码
type: textarea
placeholder: 请输入统计代码
description: "支持百度或其他平台统计代码(请自行生成),将插入 head 标签中(后台管理中也可设置,只需设置一处即可)"
# 主题
theme:
label: 主题相关
items:
theme_mode:
name: theme_mode
label: 主题模式
type: select
data-type: text
default: user
description: "设置博客的主题模式(用户/自动/浅色/暗黑),默认为用户模式,仅在用户模式下页面才有主题切换按钮,自动模式下根据时间自动切换"
options:
- value: user
label: 用户模式
- value: auto
label: 自动模式
- value: light
label: 浅色模式
- value: dark
label: 暗黑模式
light_time_scope:
name: light_time_scope
label: 浅色模式生效时间范围
type: text
default: "5:00~19:00"
placeholder: "输入格式如:5:00~19:00"
description: "设置浅色模式自动生效的时间范围,范围之外为暗黑模式(仅在主题模式为 “自动模式” 下生效),请严格按照规定格式设置,否则会导致报错"
mode_color_light:
name: mode_color_light
label: 主题色(浅色)
type: text
default: "#fb6c28"
placeholder: "浅色主题色色值,默认#fb6c28"
mode_color_dark:
name: mode_color_dark
label: 主题色(暗黑)
type: text
default: "#9999ff"
placeholder: "暗黑主题色色值,默认#9999ff"
enable_background_light:
name: enable_background_light
label: 开启浅色模式背景图
type: switch
data-type: bool
default: false
description: "需要配置好浅色模式背景图后才有效"
options:
- value: true
label: 是
- value: false
label: 否
background_light_mode:
name: lazyload_avatar
label: 背景图(浅色模式)
type: attachment
default: ""
description: "设置浅色模式下的背景图(建议webp格式),为空则只显示默认背景色"
enable_background_dark:
name: enable_background_dark
label: 开启暗黑模式背景图
type: switch
data-type: bool
default: false
description: "需要配置好暗黑模式背景图后才有效"
options:
- value: true
label: 是
- value: false
label: 否
background_dark_mode:
name: background_dark_mode
label: 背景图(暗黑模式)
type: attachment
default: ""
description: "设置暗黑模式下的背景图(建议webp格式),为空则只显示默认背景色"
content_max_width:
name: content_max_width
label: 内容区最大宽度
type: text
default: "1320px"
placeholder: "请输入"
description: "限制内容区域的宽度,像素或百分比,默认1320px"
web_font:
name: web_font
label: 网站字体
type: select
default: "off"
description: "配置网站的字体,暂时提供 2 种供选择,也可以在 “自定义” 一栏中自定义字体来源,如果两边同时配置,优先使用自定义配置中的字体(请注意:中文字体并不能保证所有文字展示正确,请慎用!!!)"
options:
- value: "off"
label: 默认
- value: "joe_slate.woff2"
label: "Joe Slate"
- value: "joe_future.woff2"
label: "Joe Future"
cursor_skin:
name: cursor_skin
label: 鼠标皮肤
type: select
default: "off"
description: "配置鼠标光标的皮肤(部分皮肤在暗黑模式下可能不明显),更多皮肤请前往 https://zhutix.com/tag/cursors/"
options:
- value: "off"
label: 无(默认)
- value: simple_cursor
label: 简洁卡通
- value: simple_cursor_blue
label: 简洁卡通-蓝
- value: simple_sunset_light
label: 简单日落(浅色)
- value: simple_sunset_dark
label: 简单日落(暗黑)
- value: crystallize
label: 简约水晶
- value: emoji_zip
label: 魔力表情
- value: black_cat
label: 小黑猫
cursor_effect:
name: cursor_effect
label: 鼠标特效
type: select
default: "off"
description: "配置鼠标“点击”或“移动”时的canvas特效"
options:
- value: "off"
label: 无(默认)
- value: cursor0
label: 樱花+颜文字
- value: cursor1
label: 小粒子
- value: cursor2
label: 大粒子
- value: cursor3
label: 社会主义价值观
- value: cursor4
label: 大爱心
- value: cursor5
label: 小爱心+颜文字
- value: cursor6
label: 多彩星星(移动)
- value: cursor7
label: 光标残影(移动)
- value: cursor8
label: 弹性表情(移动)
- value: cursor9
label: 表情雨(移动)
- value: cursor10
label: 上升气泡(移动)
- value: cursor11
label: 雪花雨(移动)
backdrop:
name: backdrop
label: 背景特效
type: select
default: "off"
description: "配置页面背景的特效,其中部分效果为顶层特效,会展示在页面最顶层,还有一部分仅在暗黑模式下生效。特效会消耗一定系统性能,请谨慎配置(为了保证显示效果,尽量不要同时开启背景图和背景特效)"
options:
- value: "off"
label: 无(默认)
- value: universe
label: 宇宙空间(仅暗黑)
- value: rain
label: 粒子雨(顶层+仅暗黑)
- value: plexus
label: 自动吸附的线段
- value: petals
label: 飘落的花瓣(顶层)
- value: rainbow
label: 四色彩虹
- value: silk
label: 变化的彩带
- value: silk_static
label: 固定的彩带
- value: balloon
label: 上升的气球
enable_offscreen_tip:
name: enable_offscreen_tip
label: 开启离屏提示
type: switch
data-type: bool
default: false
description: "在切换到其它站点或后台时,通过页面title提示"
options:
- value: true
label: 开启
- value: false
label: 关闭
offscreen_title_leave:
name: offscreen_title_leave
label: "离屏文案(离开)"
default: "歪,你去哪里了?"
placeholder: "请输入"
description: "在切换到其它站点标签或后台时,页面title展示的文字"
offscreen_title_back:
name: offscreen_title_back
label: "离屏文案(回来)"
default: "(つェ⊂)咦,又回来了!"
placeholder: "请输入"
description: "在返回到当前标签时,通过title展示的文字"
enable_back2top:
name: enable_back2top
label: 开启返回顶部
type: switch
data-type: bool
default: true
description: "是否开启返回顶部功能"
options:
- value: true
label: 开启
- value: false
label: 关闭
scrollbar_width:
name: scrollbar_width
label: 滚动条宽度
type: text
default: "8px"
placeholder: "请输入宽度,单位px"
description: "设置全局滚动条的宽度,默认为 8px,填 0 相当于不显示"
scrollbar_color:
name: scrollbar_color
label: 滚动条颜色
type: text
default: ""
placeholder: "请输入有效的颜色值"
description: "设置全局滚动条背景色,默认跟随系统色。如需分别设置浅色/暗黑模式下的颜色,请严格按照 【浅色模式颜色|深色模式颜色】 这种格式,用 “|” 隔开"
enable_loading_bar:
name: enable_loading_bar
label: 开启页面加载条
type: switch
data-type: bool
default: true
description: "是否开启页面顶部的加载条"
options:
- value: true
label: 是
- value: false
label: 否
loading_bar_height:
name: loading_bar_height
label: 加载条高度
type: text
default: "3px"
placeholder: "请输入高度,单位px"
description: "设置全局加载条的高度,默认为 3px,填 0 相当于不显示"
loading_bar_color:
name: loading_bar_color
label: 加载条颜色
type: text
default: ""
placeholder: "请输入有效的颜色值"
description: "设置全局加载条背景色,默认跟随主题色。如需分别设置浅色/暗黑模式下的颜色,请严格按照 【浅色模式颜色|深色模式颜色】 这种格式,用 “|” 隔开"
# 导航条
navbar:
label: 导航条
items:
enable_fixed_header:
name: enable_fixed_header
label: 导航条吸顶
type: switch
data-type: bool
default: true
description: "开启后,当页面滚动时,导航条始终固定在可视区域顶部,默认只在向上滚动时显示"
options:
- value: true
label: 是
- value: false
label: 否
show_logo:
name: show_logo
label: 展示博客LOGO
type: switch
data-type: bool
default: true
description: "导航条是否展示博客LOGO,LOGO图标请到 '后台管理设置-博客设置-常规设置' 中配置"
options:
- value: true
label: 展示
- value: false
label: 不展示
logo_link:
name: logo_link
label: LOGO跳转链接
placeholder: "请输入"
description: "点击LOGO时跳转的链接,不填默认跳转博客主页(不想跳转请填入#)"
logo_radius:
name: logo_radius
label: LOGO圆角值
default: "4px"
placeholder: "请输入"
description: "导航栏博客LOGO的圆角值,像素或百分比,默认4px"
enable_navbar_icon:
name: enable_navbar_icon
label: 开启菜单图标
type: switch
data-type: bool
default: true
description: "导航条菜单默认展示后台配置的图标,若不需要可以在这里统一关闭"
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_search:
name: enable_search
label: 搜索功能
type: switch
data-type: bool
default: true
description: "是否开启博客的搜索功能"
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_active_shadow:
name: enable_active_shadow
label: "文字阴影效果"
type: switch
data-type: bool
default: false
description: "是否开启当前选中项的文字阴影效果(默认关闭以节省性能)"
options:
- value: true
label: 是
- value: false
label: 否
enable_glass_blur:
name: enable_glass_blur
label: "毛玻璃效果"
type: switch
data-type: bool
default: false
description: "是否开启导航条毛玻璃效果(默认关闭以节省性能,仅在“导航条吸顶”开启时生效)"
options:
- value: true
label: 是
- value: false
label: 否
# 页脚
footer:
label: 页脚
items:
enable_footer:
name: enable_footer
label: 启用页脚
type: switch
data-type: bool
default: true
options:
- value: true
label: 是
- value: false
label: 否
footer_source:
name: footer_source
label: 页脚来源
type: select
data-type: text
default: theme
description: "设置页脚内容具体来自哪里,默认使用主题页脚,也可同时使用主题和后台配置的页脚。如果使用后台自定义页脚,建议复制主题的页脚 html 结构进行修改(/template/common/footer.ftl),然后粘贴到后台的页脚配置内(主题无法保证自定义页脚的样式及适配,请视具体情况设置,必要的时候请自行修改样式)"
options:
- value: theme
label: "主题页脚"
- value: backend
label: "后台页脚"
- value: both
label: "主题页脚 + 后台页脚"
enable_birthday:
name: enable_birthday
label: "展示博客运行时间"
type: switch
data-type: bool
default: false
description: "实时展示博客运行时长,以博客实际的安装时间为基准计算(默认关闭以节省性能)"
options:
- value: true
label: 是
- value: false
label: 否
custom_birthday:
name: custom_birthday
label: "自定义博客起始时间"
type: text
default: ""
placeholder: "示例:2021/11/11 06:30"
description: "自定义博客的起始时间/安装时间,作为计算博客运行时间的参照值,请严格按照示例格式填写,否则将导致报错(示例:2021/11/11 06:30)"
enable_icp:
name: enable_icp
label: 展示 ICP
type: switch
data-type: bool
default: true
options:
- value: true
label: 是
- value: false
label: 否
enable_police:
name: enable_police
label: 展示公网安备
type: switch
data-type: bool
default: true
options:
- value: true
label: 是
- value: false
label: 否
enable_powerby:
name: enable_powerby
label: 展示 PowerBy
type: switch
data-type: bool
default: true
description: "为了尊重作者的权益,建议展示"
options:
- value: true
label: 是
- value: false
label: 否
driven_by:
name: driven_by
label: 网站由xxx云提供云服务
type: select
data-type: text
default: none
description: "配置本站点由xxx云提供云服务"
options:
- value: none
label: 不展示(默认)
- value: aliyun
label: 阿里云
- value: tencent
label: 腾讯云
- value: upyun
label: 又拍云
- value: qiniu
label: 七牛云
enable_rss:
name: enable_rss
label: 展示 RSS
type: switch
data-type: bool
default: false
options:
- value: true
label: 是
- value: false
label: 否
enable_sitemap:
name: enable_sitemap
label: 展示站点地图
type: switch
data-type: bool
default: false
options:
- value: true
label: 是
- value: false
label: 否
# 轮播图
carousel:
label: 轮播图
items:
enable_banner:
name: enable_banner
label: 启用轮播图
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
banner_source:
name: banner_source
label: 数据来源
type: select
data-type: text
default: manual
description: "主题提供了 7 种数据来源,默认手动配置(需要自己在下面配置轮播数据),其它几种会自动去获取数据,但是请注意相应文章数据及封面要规范,否则可能不美观或展示异常(文章封面取值逻辑和首页列表一致【文章封面 > 分类封面 > 标签封面 > 随机图(若开启) > 默认封面】,当获取的数据为空时,则默认展示 “欢迎使用Joe2.0主题”)"
options:
- value: manual
label: 手动配置
- value: latest
label: 最新文章
- value: topped
label: 置顶文章
- value: visits
label: 阅读量排行文章
- value: likes
label: 点赞排行文章
# - value: topped_category
# label: 置顶分类文章
# - value: topped_tag
# label: 置顶标签文章
# - value: specify_post
# label: 特定关键词文章
- value: specify_category
label: 特定分类文章
- value: specify_tag
label: 特定标签文章
banner_specify_keyword:
name: banner_specify_keyword
label: 特定关键词
type: text
default: ""
placeholder: "请输入"
description: "当数据源为 “特定关键词/分类/标签” 文章时,需要在这里设置【关键词/分类别名/标签别名】进行匹配,相关别名请到 “后台管理-文章” 菜单下获取。(填写错误的别名可能导致网站无法渲染,别名或内容为空时展示 “欢迎使用Joe2.0主题”) "
bannerData:
name: bannerData
label: 手动配置数据
type: textarea
default: "欢迎使用Joe2.0主题-|||-https://cdn.jsdelivr.net/gh/qinhua/halo-theme-joe2.0@master/source/img/dp/welcome.jpg-|||-https://github.com/qinhua/halo-theme-joe2.0#readme=====剪映创作不凡 - TRACK概念片-|||-https://img.zcool.cn/community/011ca2614d755911013e894390b399.png@1280w_1l_2o_100sh.png-|||-#"
description: "手动配置首页的轮播图数据,仅当数据来源为 “手动配置” 时生效(注意:主题内默认配置了演示数据)。【多个轮播图之间用 '=====' 隔开,属性之间用 '-|||-' 隔开】(为了美观,允许换行),【具体示例】标题-|||-图片链接-|||-跳转链接,不需要跳转写 '#' 即可(请严格按照此格式或默认示例进行配置,否则可能导致网站崩溃)"
banner_amount_limit:
name: banner_amount_limit
label: 最大个数
type: text
data-type: long
default: 5
placeholder: "请输入从 0 至 10 的整数"
description: "设置轮播图展示的最大个数,默认为 5,主题内最大限制为 10,填 0 相当于 10(对手动配置模式同样生效)"
banner_direction:
name: banner_direction
label: 轮播方向
type: radio
data-type: string
default: horizontal
options:
- value: horizontal
label: 水平
- value: vertical
label: 垂直
enable_banner_autoplay:
name: enable_banner_autoplay
label: 自动切换
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_banner_loop:
name: enable_banner_loop
label: 循环播放
type: switch
data-type: bool
default: false
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_banner_handle:
name: enable_banner_handle
label: 允许手动控制
type: switch
data-type: bool
default: true
description: "如果关闭,将隐藏切换按钮且不能通过鼠标和键盘进行切换"
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_banner_title:
name: enable_banner_title
label: 展示标题
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_banner_switch_button:
name: enable_banner_switch_button
label: 展示左右切换按钮
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_banner_pagination:
name: enable_banner_pagination
label: 展示分页器
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
banner_delay:
name: banner_delay
label: 切换间隔
type: text
default: "3500"
placeholder: "请输入"
description: "设置轮播图切换的间隔时间,默认3500(仅在自动切换开启时生效)"
banner_lazyload_img:
name: banner_lazyload_img
label: 图片预载图
type: attachment
default: "https://cdn.jsdelivr.net/gh/qinhua/halo-theme-joe2.0@master/source/img/lazyload_h.gif"
description: "轮播图默认为懒加载,这里可以为banner图设置加载完之前的加载图(体积尽可能的小)"
# 侧边栏
aside:
label: 侧边栏
items:
enable_aside:
name: enable_aside
label: 启用全局侧边栏
type: switch
data-type: bool
default: true
description: "是否启用侧边栏(全局),关闭后所有页面都没有侧边栏(优先级高于页面元数据)"
options:
- value: true
label: 是
- value: false
label: 否
aside_position:
name: aside_position
label: 侧边栏位置
type: radio
data-type: text
default: right
description: "侧边栏展示位置,左边或右边"
options:
- value: left
label: 左侧
- value: right
label: 右侧
enable_archives_aside:
name: enable_archives_aside
label: 归档页侧边栏
type: switch
data-type: bool
default: false
description: "归档页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_post_aside:
name: enable_post_aside
label: 文章详情页侧边栏
type: switch
data-type: bool
default: false
description: "文章页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_journals_aside:
name: enable_journals_aside
label: 日志页侧边栏
type: switch
data-type: bool
default: true
description: "日志页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_photos_aside:
name: enable_photos_aside
label: 相册页侧边栏
type: switch
data-type: bool
default: false
description: "相册页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_links_aside:
name: enable_links_aside
label: 友链页侧边栏
type: switch
data-type: bool
default: true
description: "友链页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_categories_aside:
name: enable_categories_aside
label: 分类页侧边栏
type: switch
data-type: bool
default: true
description: "分类页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_tags_aside:
name: enable_tags_aside
label: 标签页侧边栏
type: switch
data-type: bool
default: true
description: "标签页右侧是否展示侧边栏"
options:
- value: true
label: 是
- value: false
label: 否
enable_sheet_aside:
name: enable_sheet_aside
label: 自定义页侧边栏
type: switch
data-type: bool
default: false
description: "自定义页面右侧是否展示侧边栏,默认关闭。开启后,所有自定义页面都会展示侧边栏(若部分页面不想展示,可以配置对应页面的元数据 enable_aside 为 false )"
options:
- value: true
label: 是
- value: false
label: 否
enable_notice:
name: enable_notice
label: 展示网站公告
type: switch
data-type: bool
default: false
description: "在右侧展示公告信息模块,必须配置公告内容才生效(请在 '基本设置' 栏中配置)"
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_qrcode:
name: enable_qrcode
label: 展示二维码
type: switch
data-type: bool
default: false
description: "在右侧展示二维码模块,必须配置图片url"
options:
- value: true
label: 开启
- value: false
label: 关闭
qrcode_url:
name: qrcode_url
label: 二维码图片
type: attachment
description: "二维码图片的url,支持配置标题、二维码图片、和描述文字"
qrcode_title:
name: qrcode_title
label: 二维码标题
type: text
default: "我的二维码"
placeholder: "请输入二维码标题(仅在二维码url不为空时生效)"
qrcode_description:
name: qrcode_description
label: 二维码描述
type: textarea
placeholder: "请输入二维码描述(仅在二维码url不为空时生效)"
enable_qrcode:
name: enable_qrcode
label: 展示二维码
type: switch
data-type: bool
default: false
description: "在右侧展示二维码模块,必须配置图片url"
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_music_player:
name: enable_music_player
label: 展示音乐播放器
type: switch
data-type: bool
default: false
description: "在右侧展示音乐播放器模块,必须配置歌单ID"
options:
- value: true
label: 开启
- value: false
label: 关闭
music_id:
name: music_id
label: 歌单ID
type: text
placeholder: "网易歌单ID,不填则不展示播放器"
enable_newest_post:
name: enable_newest_post
label: 展示最新文章
type: switch
data-type: bool
default: true
description: "在右侧展示最新文章"
options:
- value: true
label: 开启
- value: false
label: 关闭
newest_page_size:
name: newest_page_size
label: 最新文章条数
default: 5
description: "右侧最新文章展示条数,填写数字即可,默认展示最新的5篇文章(需开启最新文章)"
enable_lifetime:
name: enable_lifetime
label: 展示人生倒计时
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
show_newreply:
name: show_newreply
label: 展示最新评论
type: switch
data-type: bool
default: true
description: "在右侧展示最新的评论"
options:
- value: true
label: 开启
- value: false
label: 关闭
newreply_page_size:
name: newreply_page_size
label: 最新评论条数
type: text
data-type: long
default: 5
description: "右侧最新评论展示条数,填写数字即可,默认展示最新的5条评论(需开启最新评论)"
enable_tag_cloud:
name: enable_tag_cloud
label: 展示标签云
type: switch
data-type: bool
default: false
description: "在右侧展示标签云,默认关闭以节省性能"
options:
- value: true
label: 开启
- value: false
label: 关闭
tag_cloud_type:
name: tag_cloud_type
label: 标签云类型
type: radio
data-type: text
default: 3d
description: "设置标签云的展示形式,默认为 “3D标签云”,标签太多或卡顿时建议限制展示的标签数量使用列表形式"
options:
- value: 3d
label: 3D标签云
- value: list
label: 标签列表
tag_cloud_max:
name: tag_cloud_max
label: 标签云最大数量
type: text
default: "15"
placeholder: "请输入数字"
description: "设置标签云展示的最大数量,超过会显示 “更多” 按钮"
# 博主信息
blogger:
label: 博主信息
items:
show_blogger:
name: show_blogger
label: 展示博主信息
type: switch
data-type: bool
default: true
description: "不展示的情况下,下面配置均无效"
options:
- value: true
label: 是
- value: false
label: 否
show_level:
name: show_level
label: 展示博主等级
type: switch
data-type: bool
default: true
description: "博主等级基于文章数和评论数计算得到"
options:
- value: true
label: 是
- value: false
label: 否
enable_day_words:
name: enable_day_words
label: 开启每日一句
type: switch
data-type: bool
default: true
description: "将覆盖博客描述,资源来自 https://www.jinrishici.com"
options:
- value: true
label: 开启
- value: false
label: 关闭
motto:
name: motto
label: 个人独白
type: text
placeholder: "请输入"
description: "将覆盖每日一句,若为空则展示每日一句或博客描述"