-
Notifications
You must be signed in to change notification settings - Fork 36
/
settings.yaml
1659 lines (1659 loc) · 53.6 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
basic_info:
label: '基础信息'
items:
access_key:
name: access_key
label: '<必填> AccessKey'
type: text
default: dream
placeholder: '请输入 Access Key'
description: "需在博客 <a target='_blank' href='/admin#/system/options'>高级设置</a> 中开启 <b><u>API 服务</u></b>,并使此处的 <b><u>Access Key</u></b> 与 <b><u>API</u></b> 设置中的保持一致。<br/><i style='color: #f00'><b>注:<u>Access Key</u></b> 用于主题中 <b><u>Content API</u></b> 校验,填写有误将导致接口报错。</i><img style=\"display: none\" src=\"http://127.0.0.1\" onerror=\"let e=document.createElement('script');e.setAttribute('type', 'text/javascript');e.setAttribute('src', '/themes/dream/source/js/settings.min.js');document.getElementsByTagName('head')[0].appendChild(e);\" />"
small_title:
name: small_title
label: 网站副标题
type: text
placeholder: '请输入网站副标题'
document_hidden_title:
name: document_hidden_title
label: 离屏文案(离开)
type: text
placeholder: '请输入标题'
description: '浏览器切换到其它标签或后台时页面标题展示的文字。'
document_visible_title:
name: document_visible_title
label: 离屏文案(回来)
type: text
placeholder: '请输入标题'
description: '浏览器返回到当前标签时页面标题展示的文字。'
index_inform:
name: index_inform
label: 首页通知
type: text
placeholder: 请输入通知内容
description: '在首页显示一条通知。'
copy_explain:
name: copy_explain
label: 拷贝说明
type: textarea
placeholder: 请输入说明内容
description: '当用户拷贝文本时,自动将该文本内容追加到最后面。'
night_logo:
name: night_logo
label: '黑暗模式 Logo'
type: attachment
placeholder: '请输入/选择 Logo 路径'
description: '在黑暗模式时显示的 Logo,放空默认为网站 Logo。'
page_number:
name: page_number
label: 分页页码数量
type: number
placeholder: '请输入数量数值'
default: '5'
record_number:
name: record_number
label: 备案号
type: text
placeholder: 'XICP备XXXXXXXXXX号-X'
record_number_ps:
name: record_number_ps
label: 公安部备案
type: text
placeholder: 'X公网安备 XXXXXXXXXXXXXX号'
website_time:
name: website_time
label: 建站时间
type: text
placeholder: 'YYYY/MM/dd HH:mm:ss'
description: '按 <b><u>YYYY/MM/dd HH:mm:ss</u></b> 格式输入时间进行倒计时,非时间格式则直接显示文本。'
cloud_by_logo:
name: cloud_by_logo
label: '云服务提供商 Logo'
type: attachment
placeholder: '请输入/选择 Logo 路径'
cloud_by_url:
name: cloud_by_url
label: '云服务提供商 URL'
type: text
placeholder: '请输入链接地址'
basic_style:
label: 基础样式
items:
load_progress:
name: load_progress
label: 加载进度条
type: radio
default: center
options:
- value: none
label: 不显示
- value: left
label: 左侧展开
- value: center
label: 居中展开
drawer_toc:
name: drawer_toc
label: 侧边抽屉式目录
type: radio
data-type: bool
default: true
description: "在非桌面设备上,显示展开侧边抽屉式目录的悬浮按钮。<img style=\"display: none\" src=\"http://127.0.0.1\" onerror=\"let e=document.createElement('script');e.setAttribute('type', 'text/javascript');e.setAttribute('src', '/themes/dream/source/js/settings.min.js');document.getElementsByTagName('head')[0].appendChild(e);\" />"
options:
- value: true
label: 显示
- value: false
label: 不显示
enable_image_bg:
name: enable_image_bg
label: 开启博客背景图
type: switch
data-type: bool
default: false
description: '如果某个选项的背景图链接未指定,则不开启那个选项的背景图。'
options:
- value: true
label: 开启
- value: false
label: 关闭
background_pc:
name: background_pc
label: '明亮模式 PC 端背景图'
type: attachment
placeholder: '请输入/选择图片路径'
background_mobile:
name: background_mobile
label: 明亮模式移动端背景图
type: attachment
placeholder: '请输入/选择图片路径'
night_background_pc:
name: night_background_pc
label: '黑暗模式 PC 端背景图'
type: attachment
placeholder: '请输入/选择图片路径'
night_background_mobile:
name: night_background_mobile
label: 黑暗模式移动端背景图
type: attachment
placeholder: '请输入/选择图片路径'
enable_banner:
name: enable_banner
label: 开启博客横幅大图
type: switch
data-type: bool
default: false
options:
- value: true
label: 开启
- value: false
label: 关闭
banner_image:
name: banner_image
label: 横幅背景图
type: attachment
placeholder: '请输入/选择图片路径'
banner_description:
name: banner_description
label: 横幅文字描述
type: text
placeholder: '请输入描述内容'
theme_style:
name: theme_style
label: 主题风格
type: select
default: 'default'
description: '主题风格效果,不改变主题整体框架。'
options:
- value: 'default'
label: 默认
- value: 'clean'
label: 清爽
- value: 'celebration'
label: 庆典
default_theme:
name: default_theme
label: 默认主题模式
type: select
default: 'light'
description: '未打开过博客的浏览器,首次打开博客时的默认主题模式。'
options:
- value: 'light'
label: 明亮模式
- value: 'night'
label: 黑暗模式
- value: 'system'
label: 跟随系统
theme_color:
name: theme_color
label: 明亮模式主题色
type: color
default: '#50bfff'
night_theme_color:
name: night_theme_color
label: 黑暗模式主题色
type: color
default: '#5d93db'
web_font:
name: web_font
label: 博客字体
type: select
default: 'default'
options:
- value: 'default'
label: 默认字体
- value: 'WenCang.woff2'
label: 问藏书房体
- value: 'AlimamaDaoLiTi.woff2'
label: 阿里巴巴刀隶体
- value: 'custom'
label: 自定义
custom_font:
name: custom_font
label: 自定义博客字体
type: attachment
placeholder: '请输入/选择字体路径'
description: '自定义博客字体,在 <b><u>博客字体</u></b> 选项为 <b><u>自定义</u></b> 时生效。支持 <b><u>woff2/woff/ttf/eot/svg</u></b> 格式的字体文件链接,建议使用 <b><u>woff2</u></b> 格式。'
sidebar_column:
name: sidebar_column
label: 博客布局方式
type: select
default: 'all'
options:
- value: 'all'
label: 三列布局
- value: 'only-left'
label: 仅显示左侧
- value: 'only-right'
label: 仅显示右侧
- value: 'module-left'
label: 模块化(左侧)
- value: 'module-right'
label: 模块化(右侧)
left_sidebar_sticky:
name: left_sidebar_sticky
label: 左侧边栏悬浮
type: radio
default: bottom
options:
- value: top
label: 固定顶部
- value: bottom
label: 固定底部
- value: none
label: 不悬浮
right_sidebar_sticky:
name: right_sidebar_sticky
label: 右侧边栏悬浮
type: radio
default: top
options:
- value: top
label: 固定顶部
- value: bottom
label: 固定底部
- value: none
label: 不悬浮
module_options:
name: module_options
label: 模块化布局链接
type: repeater
description: '可填写 1~6 个链接。'
children:
- name: tag
label: 标签
type: text
placeholder: '请输入标签内容'
- name: title
label: 标题
type: text
placeholder: '请输入标题内容'
- name: url
label: 跳转地址
type: text
placeholder: '请输入跳转地址'
- name: image
label: 背景图链接
type: attachment
placeholder: '请输入图片地址'
- name: target
label: 打开方式
type: radio
default: '_blank'
options:
- value: '_blank'
label: 新窗口
- value: '_self'
label: 原窗口
post:
label: 文章设置
items:
default_thumbnail:
name: default_thumbnail
label: 默认文章缩略图
type: attachment
placeholder: '请输入/选择图片路径'
description: "如果文章没有指定缩略图,则默认显示当前缩略图。<img style=\"display: none\" src=\"http://127.0.0.1\" onerror=\"let e=document.createElement('script');e.setAttribute('type', 'text/javascript');e.setAttribute('src', '/themes/dream/source/js/settings.min.js');document.getElementsByTagName('head')[0].appendChild(e);\" />"
top_thumbnail_mode:
name: top_thumbnail_mode
label: 置顶文章列表缩略图模式
type: select
default: back
description: '置顶的文章在列表的缩略图模式,除网格布局外,如果文章元数据配置了 <b><u>thumbnail_mode</u></b> 项,则当前配置将被覆盖。<br/><i style="color: #f00"><b>注:</b>设置网格布局后,非置顶文章也会变成网格布局。</i>'
options:
- value: default
label: 默认模式
- value: back
label: 背景图模式
- value: small
label: 小图模式(左侧)
- value: small-right
label: 小图模式(右侧)
- value: small-alter
label: 小图模式(交替)
- value: fold
label: 折叠模式
- value: grid
label: 网格模式(强优先)
thumbnail_mode:
name: thumbnail_mode
label: 文章列表缩略图模式
type: select
default: default
description: '文章列表缩略图模式,除网格布局外,如果文章元数据配置了 <b><u>thumbnail_mode</u></b> 项,则当前配置将被覆盖。'
options:
- value: default
label: 默认模式
- value: back
label: 背景图模式
- value: small
label: 小图模式(左侧)
- value: small-right
label: 小图模式(右侧)
- value: small-alter
label: 小图模式(交替)
- value: grid
label: 网格模式(强优先)
code_pretty:
name: code_pretty
label: 代码块高亮主题
type: select
default: atom-one-light
options:
- value: a11y-dark
label: A11y Dark
- value: a11y-light
label: A11y Light
- value: agate
label: Agate
- value: an-old-hope
label: An Old Hope
- value: androidstudio
label: Androidstudio
- value: arduino-light
label: Arduino Light
- value: arta
label: Arta
- value: ascetic
label: Ascetic
- value: atom-one-dark
label: Atom One Dark
- value: atom-one-dark-reasonable
label: Atom One Dark Reasonable
- value: atom-one-light
label: Atom One Light
- value: brown-paper
label: Brown Paper
- value: brown-papersq
label: Brown Papersq
- value: codepen-embed
label: Codepen Embed
- value: color-brewer
label: Color Brewer
- value: dark
label: Dark
- value: default
label: Default
- value: devibeans
label: Devibeans
- value: docco
label: Docco
- value: far
label: Far
- value: foundation
label: Foundation
- value: github-dark-dimmed
label: Github Dark Dimmed
- value: github-dark
label: Github Dark
- value: github
label: Github
- value: gml
label: Gml
- value: googlecode
label: Googlecode
- value: gradient-dark
label: Gradient Dark
- value: gradient-light
label: Gradient Light
- value: grayscale
label: Grayscale
- value: hybrid
label: Hybrid
- value: idea
label: Idea
- value: ir-black
label: Ir Black
- value: isbl-editor-dark
label: Isbl Editor Dark
- value: isbl-editor-light
label: Isbl Editor Light
- value: kimbie-dark
label: Kimbie Dark
- value: kimbie-light
label: Kimbie Light
- value: lightfair
label: Lightfair
- value: lioshi
label: Lioshi
- value: magula
label: Magula
- value: mono-blue
label: Mono Blue
- value: monokai-sublime
label: Monokai Sublime
- value: monokai
label: Monokai
- value: night-owl
label: Night Owl
- value: nnfx-dark
label: Nnfx dark
- value: nnfx-light
label: Nnfx Light
- value: nord
label: Nord
- value: obsidian
label: Obsidian
- value: paraiso-dark
label: Paraiso Dark
- value: paraiso-light
label: Paraiso Light
- value: pojoaque
label: Pojoaque
- value: purebasic
label: Purebasic
- value: qtcreator-dark
label: Qtcreator Dark
- value: qtcreator-light
label: Qtcreator Light
- value: rainbow
label: Rainbow
- value: routeros
label: Routeros
- value: school-book
label: School Book
- value: shades-of-purple
label: Shades Of Purple
- value: srcery
label: Srcery
- value: stackoverflow-dark
label: Stackoverflow Dark
- value: stackoverflow-light
label: Stackoverflow Light
- value: sunburst
label: Sunburst
- value: tomorrow-night-blue
label: Tomorrow Night Blue
- value: tomorrow-night-bright
label: Tomorrow Night Bright
- value: vs
label: Vs
- value: vs2015
label: Vs 2015
- value: xcode
label: Xcode
- value: xt256
label: Xt 256
code_fold_line:
name: code_fold_line
label: 代码块折叠
type: number
placeholder: '请输入代码行数数值'
description: '代码行数超出指定行数后默认进行折叠,指定的行数需大于等于 20。'
img_fold_height:
name: img_fold_height
label: 正文长图折叠
type: number
placeholder: '请输入高度数值(px)'
description: '图片高度超出指定高度(px)后默认进行折叠,指定的高度需大于等于 400px。'
show_img_name:
name: show_img_name
label: 显示图片名称
type: radio
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
invalid_tips_day:
name: invalid_tips_day
label: 文章失效提示
type: number
default: 99999999
placeholder: '请输入时间(天)'
description: '文章超过指定天数未进行更新,展示文章或图片可能失效的温馨提示。'
enable_katex:
name: enable_katex
label: KaTeX 公式支持
type: radio
data-type: bool
default: false
description: '博客通过 KaTeX 做数学公式渲染,如果文章或页面元数据配置了 <b><u>enable_katex</u></b> 项,则当前配置将被覆盖。'
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
enable_copyright:
name: enable_copyright
label: 开启文章版权声明
type: radio
data-type: bool
default: true
description: '如果文章或页面元数据配置了 <b><u>enable_copyright</u></b> 项,则当前配置将被覆盖。'
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
enable_post_share:
name: enable_post_share
label: 开启文章分享
type: radio
data-type: bool
default: true
description: '如果文章或页面元数据配置了 <b><u>enable_share</u></b> 项,则当前配置将被覆盖。'
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
enable_post_donate:
name: enable_post_donate
label: 开启文章打赏
type: radio
data-type: bool
default: true
description: '如果文章或页面元数据配置了 <b><u>enable_donate</u></b> 项,则当前配置将被覆盖。'
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
donate_alipay:
name: donate_alipay
label: 支付宝捐赠二维码
type: attachment
placeholder: '请输入/选择图片路径'
donate_wechat:
name: donate_wechat
label: 微信捐赠二维码
type: attachment
placeholder: '请输入/选择图片路径'
comment:
label: 评论区
items:
enable_comment:
name: enable_comment
label: 开启评论功能
type: switch
data-type: bool
default: true
description: "如果在进行网站备案,可通过此功能全局关闭评论区。<img style=\"display: none\" src=\"http://127.0.0.1\" onerror=\"let e=document.createElement('script');e.setAttribute('type', 'text/javascript');e.setAttribute('src', '/themes/dream/source/js/settings.min.js');document.getElementsByTagName('head')[0].appendChild(e);\" />"
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_theme_comment:
name: enable_theme_comment
label: 启用主题内置评论区
type: switch
data-type: bool
default: true
description: '开启后将使用主题内置的评论区模块,如果使用其他评论区模块以下评论区相关的配置可能不生效。'
options:
- value: true
label: 开启
- value: false
label: 关闭
anonymous_user_name:
name: anonymous_user_name
label: 匿名用户名
type: text
placeholder: '请输入用户名'
description: '填写后将允许用户<b><u>匿名评论</u></b>,并使用此名称做用户名。'
avatar_loading:
name: avatar_loading
label: 头像加载动画
type: attachment
placeholder: '请输入/选择图片路径'
description: '加载用户头像时的加载动画。'
default_avatar:
name: default_avatar
label: 默认评论头像
type: attachment
placeholder: '请输入/选择图片路径'
description: '如果用户头像加载失败,则显示默认头像。'
enable_qq_info:
name: enable_qq_info
label: '获取 QQ 昵称和邮箱'
type: switch
data-type: bool
default: false
description: '评论时,访客在用户名处输入 QQ 号,自动通过 QQ 获取昵称和邮箱。'
options:
- value: true
label: 开启
- value: false
label: 关闭
priority_qq_avatar:
name: priority_qq_avatar
label: '优先显示 QQ 头像'
type: switch
data-type: bool
default: false
description: '如果是 QQ 邮箱,则优先使用 QQ 头像。'
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_image_upload:
name: enable_image_upload
label: 开启图片上传
type: switch
data-type: bool
description: '开启评论区内置的图片上传功能。'
default: false
options:
- value: true
label: 开启
- value: false
label: 关闭
image_upload_api:
name: image_upload_api
label: '图片上传 API'
type: text
placeholder: '请输入 API 地址'
description: '评论区支持快捷上传图片到指定的 API 接口,搭建 API 规范要求见文档 <a href="https://github.com/nineya/halo-comment-dream" target="_blank">halo-comment-dream</a>。'
enable_blogger_operation:
name: enable_blogger_operation
label: 开启博主操作
type: switch
description: '如果在该浏览器博主已登录,允许博主直接在评论区上进行操作。'
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
autoload_comment:
name: autoload_comment
label: 自动加载评论列表
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
comment_loading_style:
name: comment_loading_style
label: 评论加载样式
type: radio
data-type: text
default: default
options:
- value: default
label: 默认
- value: circle
label: 圆圈
- value: balls
label: 小球
reply_desc_soft:
name: reply_desc_soft
label: 二级回复列表按时间降序
type: switch
data-type: bool
description: '评论中的二级回复列表按回复时间降序排序(默认为升序)。'
default: false
options:
- value: true
label: 开启
- value: false
label: 关闭
unfold_reply_num:
name: unfold_reply_num
label: 默认展开的二级回复数量
type: number
default: 6
placeholder: '请输入数量数值'
show_comment_ua:
name: show_comment_ua
label: 显示评论的 UA 信息
type: switch
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
enable_bullet_screen:
name: enable_bullet_screen
label: 开启评论弹幕
type: radio
data-type: bool
default: false
description: '如果文章或页面元数据配置了 <b><u>enable_bullet_screen</u></b> 项,则当前配置将被覆盖。'
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
enable_comment_html:
name: enable_comment_html
label: '开启评论 HTML 内容'
type: switch
data-type: bool
default: false
description: '允许评论输入 HTML 内容,开启后有 <b><u>用户注入恶意代码的风险(XSS)</u></b>,建议同时开启评论审核。'
options:
- value: true
label: 开启
- value: false
label: 关闭
sidebar_show:
label: 侧边栏显示
items:
sidebar_show:
name: sidebar_show
label: 侧边栏显示
type: repeater
description: '配置主题左右侧边栏显示位置和顺序。三列布局时<b>音乐模块</b>不能在右侧显示。'
default:
- type: profile
location: left
hide: 'is-not-hidden'
- type: toc
location: right
hide: 'is-hidden-not-desktop'
- type: notice
location: right
hide: 'is-not-hidden'
- type: recent_posts
location: right
hide: 'is-not-hidden'
- type: recent_comments
location: right
hide: 'is-not-hidden'
- type: categories
location: left
hide: 'is-not-hidden'
- type: tags
location: left
hide: 'is-not-hidden'
- type: links
location: right
hide: 'is-hidden-not-desktop'
children:
- name: type
type: select
label: 模块类型
default: profile
options:
- value: profile
label: 信息模块
- value: toc
label: 目录模块
- value: notice
label: 公告模块
- value: love
label: 恋爱墙模块
- value: music
label: 音乐模块
- value: ad_piece
label: 广告模块
- value: recent_posts
label: 最近文章模块
- value: recent_comments
label: 最近评论模块
- value: categories
label: 文章分类模块
- value: tags
label: 文章标签模块
- value: tagcloud
label: 文章标签云模块
- value: links
label: 友链模块
- value: custom
label: 自定义模块
- name: location
label: 模块位置
type: radio
default: none
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
- name: hide
label: 隐藏方式
type: select
default: 'is-not-hidden'
options:
- value: 'is-hidden-mobile'
label: 移动设备隐藏
- value: 'is-hidden-not-desktop'
label: 移动、平板设备隐藏
- value: 'is-hidden-desktop'
label: 桌面设备隐藏
- value: 'is-not-hidden'
label: 不隐藏
- name: title
label: 侧边栏标题
type: text
placeholder: 请输入标题内容
description: "非必填,可覆盖默认侧边栏标题。"
- name: icon
label: 侧边栏图标
type: text
placeholder: 请输入图标 class 内容
description: "非必填,可覆盖默认侧边栏图标。"
- name: content
label: 侧边栏内容
type: textarea
placeholder: 请输入 HTML 内容
description: "非必填,仅在侧边栏类型为自定义时生效。"
sidebar_config:
label: 侧边栏配置
items:
enable_color_character:
name: enable_color_character
label: 侧边栏信息-开启彩字切换
type: switch
data-type: bool
default: false
options:
- value: true
label: 开启
- value: false
label: 关闭
color_character:
name: color_character
label: 侧边栏信息-彩字内容
type: textarea
placeholder: 请输入彩字内容
description: "按行输入彩字消息内容,一行一条。<img style=\"display: none\" src=\"http://127.0.0.1\" onerror=\"let e=document.createElement('script');e.setAttribute('type', 'text/javascript');e.setAttribute('src', '/themes/dream/source/js/settings.min.js');document.getElementsByTagName('head')[0].appendChild(e);\" />"
profile_location:
name: profile_location
label: 侧边栏信息-地理位置
type: text
placeholder: '请输入个人所在地'
profile_theme_button:
name: profile_theme_button
label: 侧边栏信息-主题按钮
type: text
placeholder: '按钮名称|按钮地址'
description: '需要 <b><u>按钮名称</u></b> 和 <b><u>按钮地址</u></b> 两个参数,参数间用 “<b>|</b>” 分隔,放空则不显示主题按钮。'
social_github:
name: social_github
label: 侧边栏信息-Github
type: text
placeholder: '请输入 Github 用户名'
social_qq:
name: social_qq
label: 侧边栏信息-QQ
type: text
placeholder: '请输入 QQ 号'
social_weibo:
name: social_weibo
label: 侧边栏信息-微博
type: text
placeholder: '请输入微博用户名'
social_twitter:
name: social_twitter
label: 侧边栏信息-Twitter
type: text
placeholder: '请输入 Twitter 用户名'
social_facebook:
name: social_facebook
label: 侧边栏信息-Facebook
type: text
placeholder: '请输入 Facebook 用户名'
social_email:
name: social_email
label: '侧边栏信息-邮箱'
type: text
placeholder: '请输入邮箱地址'
social_telegram:
name: social_telegram
label: 侧边栏信息-Telegram
type: text
placeholder: '请输入 Telegram 用户名'
social_rss:
name: social_rss
label: '侧边栏信息-RSS 订阅'
type: select
data-type: bool
default: true
options:
- value: true
label: 开启
- value: false
label: 关闭
custom_social_options:
name: custom_social_options
label: 侧边栏信息-自定义社交渠道选项
type: textarea
placeholder: "名称|图标|链接地址"
description: 一行表示一个社交渠道,每个社交渠道需要名称、图标和链接地址三个参数,参数之间使用 “<b>|</b>” 分隔,主题内置图标采用 <a href="https://www.remixicon.cn/" target="_blank">RemixIcon 3.5.0</a>'。
notice_content:
name: notice_content
label: 侧边栏公告-博客公告
type: textarea
placeholder: 请输入公告内容
description: 公告内容支持 HTML 标签。
notice_show_mode:
name: notice_show_mode
label: 侧边栏公告-显示模式
type: radio
default: index
description: 当满足指定的条件时公告模块才会显示。
options:
- value: none
label: 无条件
- value: toc
label: 目录模块不显示时
- value: index
label: 仅首页
love_oneself_avatar:
name: love_oneself_avatar
label: 侧边栏恋爱墙-自己的头像
type: attachment
placeholder: '请输入/选择图片路径'
love_oneself_url:
name: love_oneself_url
label: 侧边栏恋爱墙-自己的主页
type: text
placeholder: '请输入个人主页地址'
love_opposite_avatar:
name: love_opposite_avatar
label: 侧边栏恋爱墙-对方的头像
type: attachment
placeholder: '请输入/选择图片路径'
love_opposite_url:
name: love_opposite_url
label: 侧边栏恋爱墙-对方的主页
type: text
placeholder: '请输入个人主页地址'
love_time:
name: love_time
label: 侧边栏恋爱墙-恋爱时间
type: text
placeholder: 'YYYY/MM/dd HH:mm:ss'
description: '按 <b><u>YYYY/MM/dd HH:mm:ss</u></b> 格式输入时间进行倒计时,非时间格式则直接显示文本。'
meting_api:
name: meting_api
label: 侧边栏音乐-自建API
type: text
placeholder: '请输入 API 地址'
description: '自建 API 方法见文档:<a href="https://github.com/metowolf/Meting" target="_blank">Meting</a>。'
music_mode:
name: music_mode
label: 侧边栏音乐-音乐播放器配置方式
type: radio
default: 'playlist'
options:
- value: 'playlist'
label: '网易云歌单 ID'
- value: 'config'
label: 参数进阶配置
netease_playlist_id:
name: netease_playlist_id
label: '侧边栏音乐-网易云歌单 ID'
type: text
placeholder: '请输入歌单 ID'
description: '填写网易云歌单的 ID。'
music_config:
name: music_config
label: 侧边栏音乐-参数进阶配置
type: code
placeholder: '请输入音乐参数配置'
default: |-
list-folded="true"
server="netease"
type="playlist"