forked from nineya/halo-theme-dream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.yaml
1863 lines (1863 loc) · 53.9 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: "博客API设置中的Access Key"
description: "Access Key 用于主题中 Content API 校验,填写有误将导致接口报错,需在博客高级设置中开启 API 服务,并使此处的 Access Key 与 API 设置中的保持一致。"
small_title:
name: small_title
label: 网站副标题
type: text
placeholder: "网站副标题"
document_hidden_title:
name: document_hidden_title
label: 离屏文案(离开)
type: text
placeholder: "浏览器切换到其它标签或后台时页面标题展示的文字"
document_visible_title:
name: document_visible_title
label: 离屏文案(回来)
type: text
placeholder: "浏览器返回到当前标签时页面标题展示的文字"
night_logo:
name: night_logo
label: 黑夜模式的logo(放空默认为网站logo)
type: attachment
placeholder: "黑夜模式的logo"
page_number:
name: page_number
label: 分页页码数量
type: text
placeholder: "分页页码数量"
default: "5"
record_number:
name: record_number
label: 备案号
type: text
placeholder: "工信部备案号"
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: "输入时间格式进行倒计时,非时间格式则直接显示文本。"
cloud_by_logo:
name: cloud_by_logo
label: 云服务提供商Logo
type: attachment
placeholder: "Logo图片url链接"
cloud_by_url:
name: cloud_by_url
label: 云服务提供商URL
type: text
placeholder: "url地址"
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: "在非桌面设备上,显示展开侧边抽屉式目录的悬浮按钮。"
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: "图片url链接"
background_mobile:
name: background_mobile
label: 白天移动端背景图
type: attachment
placeholder: "图片url链接"
night_background_pc:
name: night_background_pc
label: 黑夜PC端背景图
type: attachment
placeholder: "图片url链接"
night_background_mobile:
name: night_background_mobile
label: 黑夜移动端背景图
type: attachment
placeholder: "图片url链接"
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: "图片url链接"
banner_description:
name: banner_description
label: 横幅文字描述
type: text
placeholder: "文字内容"
default_theme:
name: default_theme
label: 默认主题模式
type: select
default: "light"
placeholder: "浏览器首次打开博客时默认的主题模式。"
options:
- value: "light"
label: 明亮主题
- value: "night"
label: 黑暗主题
- value: "system"
label: 跟随系统
theme_color:
name: theme_color
label: 主题色
type: color
default: "#50bfff"
placeholder: "普通模式下的主题颜色"
night_theme_color:
name: night_theme_color
label: 黑夜主题色
type: color
default: "#5d93db"
placeholder: "黑夜模式下的主题颜色"
web_font:
name: web_font
label: 博客字体
type: select
default: "default"
options:
- value: "default"
label: 默认字体
- value: "WenCang.woff2"
label: 问藏书房体
- value: "custom"
label: 自定义
custom_font:
name: custom_font
label: 自定义博客字体链接
type: attachment
description: "自定义博客字体,在“博客字体”选项为“自定义“时生效。支持 woff2/woff/ttf/eot/svg 格式的字体文件链接,建议使用 woff2 格式。"
sidebar_column:
name: sidebar_column
label: 侧边栏布局方式
type: select
default: "all"
options:
- value: "all"
label: 三列布局
- value: "only-left"
label: 仅显示左侧
- value: "only-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: 不悬浮
post:
label: 文章设置
items:
default_thumbnail:
name: default_thumbnail
label: 默认文章缩略图
type: attachment
placeholder: "图片url地址"
description: "如果文章没有指定缩略图,则默认显示当前缩略图"
top_thumbnail_mode:
name: top_thumbnail_mode
label: 置顶文章列表缩略图模式
type: select
default: back
description: "置顶的文章在列表的缩略图模式,如果文章元数据配置了“thumbnail_mode”项,则当前配置将被覆盖。"
options:
- value: default
label: 默认模式
- value: back
label: 背景图模式
- value: small
label: 小图模式(左侧)
- value: small-right
label: 小图模式(右侧)
- value: small-alter
label: 小图模式(交替)
thumbnail_mode:
name: thumbnail_mode
label: 文章列表缩略图模式
type: select
default: default
description: "文章列表缩略图模式,如果文章元数据配置了“thumbnail_mode”项,则当前配置将被覆盖。"
options:
- value: default
label: 默认模式
- value: back
label: 背景图模式
- value: small
label: 小图模式(左侧)
- value: small-right
label: 小图模式(右侧)
- value: small-alter
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: text
placeholder: "触发折叠的代码行数"
description: "代码行数超出指定行数后默认进行折叠,指定的行数需大于等于20。"
img_fold_height:
name: img_fold_height
label: 正文长图折叠
type: text
placeholder: "触发折叠的图片高度(px)"
description: "图片高度超出指定高度后默认进行折叠,指定的高度需大于等于400px。"
invalid_tips_day:
name: invalid_tips_day
label: 文章失效提示
type: text
default: 99999999
placeholder: "填写时间(天)"
description: "文章超过指定天数未进行更新,展示文章或图片可能失效的温馨提示。"
enable_katex:
name: enable_katex
label: KaTeX 公式支持
type: radio
data-type: bool
default: false
description: "博客通过 KaTeX 做数学公式渲染,如果文章或页面元数据配置了“enable_katex”项,则当前配置将被覆盖。"
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
enable_copyright:
name: enable_copyright
label: 文章底部版权声明
type: radio
data-type: bool
default: true
description: "如果文章或页面元数据配置了“enable_copyright”项,则当前配置将被覆盖。"
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
enable_post_share:
name: enable_post_share
label: 开启文章分享
type: radio
data-type: bool
default: true
description: "如果文章或页面元数据配置了“enable_share”项,则当前配置将被覆盖。"
options:
- value: true
label: 默认开启
- value: false
label: 默认关闭
close_post_comment:
name: close_post_comment
label: 关闭所有文章和自定义页面评论区
type: switch
data-type: bool
default: false
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_theme_comment:
name: enable_theme_comment
label: 使用主题定制评论区
type: switch
data-type: bool
default: true
description: "开启后将使用主题内置的评论区模块,如果使用其他评论区模块以下评论区相关的配置可能不生效。"
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>。'
anonymous_user_name:
name: anonymous_user_name
label: 匿名用户名
type: text
placeholder: "用户名"
description: "填写后将允许用户匿名评论。"
unfold_reply_num:
name: unfold_reply_num
label: 默认展开的二级回复数量
type: text
default: 6
placeholder: "默认展开的二级回复数量"
enable_bullet_screen:
name: enable_bullet_screen
label: 开启评论弹幕
type: radio
data-type: bool
default: false
description: "如果文章或页面元数据配置了“enable_bullet_screen”项,则当前配置将被覆盖。"
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: 关闭
reply_desc_soft:
name: reply_desc_soft
label: 回复列表按时间降序
type: switch
data-type: bool
description: "评论中的二级评论按回复时间降序排序(默认为升序)。"
default: false
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: 关闭
show_comment_ua:
name: show_comment_ua
label: 显示评论的UA信息
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: 小球
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: 关闭
avatar_loading:
name: avatar_loading
label: 头像加载动画
type: attachment
placeholder: "图片url链接"
description: "加载用户头像时的加载动画。"
default_avatar:
name: default_avatar
label: 默认评论头像
type: attachment
placeholder: "图片url链接"
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: 关闭
enable_comment_html:
name: enable_comment_html
label: 开启评论html内容
type: switch
data-type: bool
default: false
description: "允许评论输入html内容,开启后有用户注入恶意代码的风险(XSS),建议同时开启评论审核。"
options:
- value: true
label: 开启
- value: false
label: 关闭
sidebar_show:
label: 侧边栏显示
items:
sidebar_profile:
name: sidebar_profile
label: 侧边栏信息
type: radio
default: left
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_toc:
name: sidebar_toc
label: 侧边栏目录
type: radio
default: right
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_notice:
name: sidebar_notice
label: 侧边栏公告
type: radio
default: right
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_love:
name: sidebar_love
label: 侧边栏恋爱墙
type: radio
default: right
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_music:
name: sidebar_music
label: 侧边栏音乐
type: radio
default: none
description: "三列布局时不能在右侧显示音乐模块。"
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_ad_piece:
name: sidebar_ad_piece
label: 侧边栏广告
type: radio
default: none
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_recent_posts:
name: sidebar_recent_posts
label: 侧边栏最近文章
type: radio
default: right
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_recent_comments:
name: sidebar_recent_comments
label: 侧边栏最近评论
type: radio
default: right
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_categories:
name: sidebar_categories
label: 侧边栏分类
type: radio
default: left
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_tags:
name: sidebar_tags
label: 侧边栏标签
type: radio
default: left
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_tagcloud:
name: sidebar_tagcloud
label: 侧边栏标签云
type: radio
default: none
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_links:
name: sidebar_links
label: 侧边栏友链
type: radio
default: left
options:
- value: left
label: 左侧
- value: right
label: 右侧
- value: none
label: 关闭
sidebar_priority_profile:
name: sidebar_priority_profile
label: 侧边栏信息-优先级
type: text
default: 9900
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_toc:
name: sidebar_priority_toc
label: 侧边栏目录-优先级
type: text
default: 9800
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_notice:
name: sidebar_priority_notice
label: 侧边栏公告-优先级
type: text
default: 9700
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_love:
name: sidebar_priority_love
label: 侧边栏恋爱墙-优先级
type: text
default: 9600
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_music:
name: sidebar_priority_music
label: 侧边栏音乐-优先级
type: text
default: 9500
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_ad_piece:
name: sidebar_priority_ad_piece
label: 侧边栏广告-优先级
type: text
default: 9400
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_recent_posts:
name: sidebar_priority_recent_posts
label: 侧边栏最近文章-优先级
type: text
default: 9300
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_recent_comments:
name: sidebar_priority_recent_comments
label: 侧边栏最近评论-优先级
type: text
default: 9200
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_categories:
name: sidebar_priority_categories
label: 侧边栏分类-优先级
type: text
default: 9100
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_tags:
name: sidebar_priority_tags
label: 侧边栏标签-优先级
type: text
default: 9000
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_tagcloud:
name: sidebar_priority_tagcloud
label: 侧边栏标签云-优先级
type: text
default: 8900
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
sidebar_priority_links:
name: sidebar_priority_links
label: 侧边栏友链-优先级
type: text
default: 8800
placeholder: "填写数字优先级"
description: "优先级越高,模块排序越靠前。"
hide_profile:
name: hide_profile
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: 不隐藏
hide_toc:
name: hide_toc
label: 侧边栏目录-隐藏方式
type: select
default: "is-hidden-not-desktop"
options:
- value: "is-hidden-mobile"
label: 移动设备隐藏
- value: "is-hidden-not-desktop"
label: 移动、平板设备隐藏
- value: "is-hidden-desktop"
label: 桌面设备隐藏
- value: "is-not-hidden"
label: 不隐藏
hide_notice:
name: hide_notice
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: 不隐藏
hide_love:
name: hide_love
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: 不隐藏
hide_music:
name: hide_music
label: 侧边栏音乐-隐藏方式
type: select
default: "is-hidden-mobile"
options:
- value: "is-hidden-mobile"
label: 移动设备隐藏
- value: "is-hidden-not-desktop"
label: 移动、平板设备隐藏
- value: "is-hidden-desktop"
label: 桌面设备隐藏
- value: "is-not-hidden"
label: 不隐藏
hide_ad_piece:
name: hide_ad_piece
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: 不隐藏
hide_recent_posts:
name: hide_recent_posts
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: 不隐藏
hide_recent_comments:
name: hide_recent_comments
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: 不隐藏
hide_categories:
name: hide_categories
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: 不隐藏
hide_tags:
name: hide_tags
label: 侧边栏标签-隐藏方式
type: select
default: "is-not-hidden"
options:
- value: "is-hidden-mobile"
label: 移动设备隐藏
- value: "is-hidden-not-desktop"
label: 移动、平板设备隐藏
- value: "is-hidden-desktop"