hexo-theme-solitude 1.1.3 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -19
- package/_config.yml +244 -193
- package/languages/en-US.yml +1 -0
- package/languages/zh-CN.yml +8 -8
- package/layout/404.pug +24 -0
- package/layout/archive.pug +11 -0
- package/layout/category.pug +16 -0
- package/layout/includes/console.pug +42 -0
- package/layout/includes/footer.pug +71 -0
- package/layout/includes/head/config.pug +79 -0
- package/layout/includes/head/pwa.pug +59 -0
- package/layout/includes/head.pug +29 -0
- package/layout/includes/header.pug +4 -0
- package/layout/includes/inject/body.pug +68 -0
- package/layout/{partial/compoment/inject/head.ejs → includes/inject/head.pug} +61 -35
- package/layout/includes/layout.pug +35 -0
- package/layout/{partial/loading.ejs → includes/loading.pug} +19 -17
- package/layout/includes/mixins/articleSort.pug +14 -0
- package/layout/includes/mixins/pagination.pug +8 -0
- package/layout/includes/nav.pug +22 -0
- package/layout/includes/page/about.pug +10 -0
- package/layout/includes/page/categories.pug +8 -0
- package/layout/includes/page/default.pug +2 -0
- package/layout/includes/page/echarts.pug +7 -0
- package/layout/includes/page/equipment.pug +3 -0
- package/layout/includes/page/links.pug +35 -0
- package/layout/includes/page/moments.pug +5 -0
- package/layout/includes/page/rss.pug +22 -0
- package/layout/includes/page/says.pug +20 -0
- package/layout/includes/page/tags.pug +8 -0
- package/layout/includes/page/tlink.pug +9 -0
- package/layout/includes/recent-posts.pug +9 -0
- package/layout/includes/sidebar.pug +17 -0
- package/layout/includes/widgets/aside/aside.pug +18 -0
- package/layout/includes/widgets/aside/asideAllInfo.pug +8 -0
- package/layout/includes/widgets/aside/asideArchive.pug +9 -0
- package/layout/includes/widgets/aside/asideFlipCard.pug +5 -0
- package/layout/includes/widgets/aside/asideHistory.pug +8 -0
- package/layout/includes/widgets/aside/asideInfoCard.pug +22 -0
- package/layout/includes/widgets/aside/asideNewestPost.pug +16 -0
- package/layout/includes/widgets/aside/asidePower.pug +19 -0
- package/layout/includes/widgets/aside/asideSwitch.pug +26 -0
- package/layout/includes/widgets/aside/asideTag.pug +11 -0
- package/layout/includes/widgets/aside/asideToc.pug +5 -0
- package/layout/includes/widgets/aside/asideWebInfo.pug +40 -0
- package/layout/includes/widgets/aside/asideWelcome.pug +12 -0
- package/layout/includes/widgets/home/banner.pug +16 -0
- package/layout/includes/widgets/home/bbTimeList.pug +8 -0
- package/layout/includes/widgets/home/categoryBar.pug +10 -0
- package/layout/includes/widgets/home/categoryGroup.pug +9 -0
- package/layout/includes/widgets/home/hometop.pug +9 -0
- package/layout/includes/widgets/home/postList.pug +26 -0
- package/layout/includes/widgets/home/rencentPost.pug +26 -0
- package/layout/includes/widgets/home/topGroup.pug +27 -0
- package/layout/includes/widgets/nav/left.pug +10 -0
- package/layout/includes/widgets/nav/menu.pug +16 -0
- package/layout/includes/widgets/nav/right.pug +23 -0
- package/layout/includes/widgets/page/about/authorinfo.pug +12 -0
- package/layout/includes/widgets/page/about/award.pug +34 -0
- package/layout/includes/widgets/page/about/contentinfo.pug +38 -0
- package/layout/includes/widgets/page/about/hobbies.pug +33 -0
- package/layout/includes/widgets/page/about/motto.pug +19 -0
- package/layout/includes/widgets/page/about/other.pug +61 -0
- package/layout/includes/widgets/page/about/personalities.pug +16 -0
- package/layout/includes/widgets/page/about/skillsinfo.pug +41 -0
- package/layout/includes/widgets/page/banner.pug +14 -0
- package/layout/includes/widgets/page/equipment/content.pug +23 -0
- package/layout/includes/widgets/page/links/banner.pug +30 -0
- package/layout/includes/widgets/page/links/linksCard.pug +18 -0
- package/layout/includes/widgets/page/links/linksItem.pug +14 -0
- package/layout/includes/widgets/page/moments/angle.pug +24 -0
- package/layout/includes/widgets/page/moments/index.pug +18 -0
- package/layout/includes/widgets/page/says/saysBottom.pug +11 -0
- package/layout/includes/widgets/page/says/saysContent.pug +6 -0
- package/layout/includes/widgets/page/says/saysFunction.pug +10 -0
- package/layout/includes/widgets/page/says/saysMeta.pug +7 -0
- package/layout/includes/widgets/post/award.pug +48 -0
- package/layout/includes/widgets/post/copyright.pug +27 -0
- package/layout/includes/widgets/post/postMeta.pug +55 -0
- package/layout/includes/widgets/post/postNav.pug +25 -0
- package/layout/includes/widgets/post/wave.pug +9 -0
- package/layout/includes/widgets/randomlink.pug +32 -0
- package/layout/includes/widgets/rightside/index.pug +74 -0
- package/layout/includes/widgets/third-party/comments/comment.pug +14 -0
- package/layout/includes/widgets/third-party/comments/gitalk.pug +0 -0
- package/layout/{partial/compoment/third-party/comments/twikoo.ejs → includes/widgets/third-party/comments/twikoo.pug} +8 -9
- package/layout/includes/widgets/third-party/comments/valine.pug +0 -0
- package/layout/includes/widgets/third-party/music.pug +3 -0
- package/layout/includes/widgets/third-party/pjax.pug +30 -0
- package/layout/includes/widgets/third-party/search/algolia-search.pug +14 -0
- package/layout/includes/widgets/third-party/search/index.pug +7 -0
- package/layout/includes/widgets/third-party/search/local-search.pug +13 -0
- package/layout/index.pug +20 -0
- package/layout/page.pug +32 -0
- package/layout/post.pug +43 -0
- package/layout/tag.pug +19 -0
- package/package.json +4 -4
- package/scripts/event/page.js +20 -2
- package/scripts/filter/checkThemeConfig.js +0 -1
- package/scripts/filter/randomPosts.js +0 -1
- package/scripts/helper/{charts.js → echarts.js} +27 -28
- package/scripts/helper/stylus.js +23 -0
- package/scripts/tags/bvideo.js +1 -36
- package/source/css/_comment/index.styl +121 -0
- package/source/css/_comment/twikoo.styl +515 -0
- package/source/css/_extra/console.styl +354 -0
- package/source/css/_extra/rightmenu.styl +83 -0
- package/source/css/_global/animation.css +756 -0
- package/source/css/_global/function.styl +83 -0
- package/source/css/_global/index.styl +120 -0
- package/source/css/_global/var.styl +1 -0
- package/source/css/_layout/articleSort.styl +199 -0
- package/source/css/_layout/base.styl +392 -0
- package/source/css/_layout/footer.styl +359 -0
- package/source/css/_layout/header.styl +1331 -0
- package/source/css/_layout/index.styl +293 -0
- package/source/css/_layout/sidebar.styl +226 -0
- package/source/css/_mode/index.styl +52 -0
- package/source/css/_page/about.styl +835 -0
- package/source/css/_page/category.styl +141 -0
- package/source/css/_page/equipment.styl +101 -0
- package/source/css/_page/error.styl +161 -0
- package/source/css/_page/home.styl +58 -0
- package/source/css/_page/homeTop.styl +1035 -0
- package/source/css/_page/index.styl +131 -0
- package/source/css/_page/link.styl +433 -0
- package/source/css/_page/moment.styl +179 -0
- package/source/css/_page/rss.styl +87 -0
- package/source/css/_page/says.styl +347 -0
- package/source/css/_page/tag.styl +56 -0
- package/source/css/_post/commentBarrage.styl +149 -0
- package/source/css/_post/externalTags.styl +694 -0
- package/source/css/_post/highlight.styl +96 -0
- package/source/css/_post/index.styl +935 -0
- package/source/css/_post/pagination.styl +467 -0
- package/source/css/_post/postContent.styl +957 -0
- package/source/css/_post/relatedPost.styl +160 -0
- package/source/css/_post/reward.styl +217 -0
- package/source/css/_search/algolia-search.styl +154 -0
- package/source/css/_search/local-search.styl +131 -0
- package/source/css/_widgets/aside/allinfo.styl +134 -0
- package/source/css/_widgets/aside/flip.styl +68 -0
- package/source/css/_widgets/aside/history.styl +35 -0
- package/source/css/_widgets/aside/index.styl +156 -0
- package/source/css/_widgets/aside/info.styl +263 -0
- package/source/css/_widgets/aside/newPost.styl +55 -0
- package/source/css/_widgets/aside/power.styl +90 -0
- package/source/css/_widgets/aside/toc.styl +85 -0
- package/source/css/_widgets/aside/welcome.styl +14 -0
- package/source/css/_widgets/index.styl +3 -0
- package/source/css/index.styl +40 -0
- package/source/js/commentBarrage.js +8 -5
- package/source/js/extend/console/comment.js +60 -63
- package/source/js/extend/covercolor/local.js +1 -1
- package/source/js/extend/search/algolia-search.js +151 -134
- package/source/js/extend/search/local-search.js +137 -162
- package/source/js/main.js +655 -505
- package/source/js/utils.js +168 -145
- package/layout/404.ejs +0 -34
- package/layout/archive.ejs +0 -10
- package/layout/category.ejs +0 -18
- package/layout/index.ejs +0 -20
- package/layout/layout.ejs +0 -30
- package/layout/page/about.ejs +0 -15
- package/layout/page/categories.ejs +0 -12
- package/layout/page/circle.ejs +0 -5
- package/layout/page/echarts.ejs +0 -1
- package/layout/page/equipment.ejs +0 -2
- package/layout/page/links.ejs +0 -46
- package/layout/page/page.ejs +0 -3
- package/layout/page/rss.ejs +0 -39
- package/layout/page/says.ejs +0 -17
- package/layout/page/tags.ejs +0 -12
- package/layout/page/tlink.ejs +0 -11
- package/layout/page.ejs +0 -45
- package/layout/partial/body.ejs +0 -7
- package/layout/partial/compoment/about/authorinfo.ejs +0 -18
- package/layout/partial/compoment/about/award.ejs +0 -59
- package/layout/partial/compoment/about/contentinfo.ejs +0 -33
- package/layout/partial/compoment/about/hobbies.ejs +0 -53
- package/layout/partial/compoment/about/motto.ejs +0 -17
- package/layout/partial/compoment/about/other.ejs +0 -76
- package/layout/partial/compoment/about/personalities.ejs +0 -11
- package/layout/partial/compoment/about/skillsinfo.ejs +0 -62
- package/layout/partial/compoment/aside/aside.ejs +0 -28
- package/layout/partial/compoment/aside/asideAllInfo.ejs +0 -6
- package/layout/partial/compoment/aside/asideArchive.ejs +0 -11
- package/layout/partial/compoment/aside/asideFlipCard.ejs +0 -72
- package/layout/partial/compoment/aside/asideHistory.ejs +0 -49
- package/layout/partial/compoment/aside/asideInfoCard.ejs +0 -39
- package/layout/partial/compoment/aside/asideNewestPost.ejs +0 -31
- package/layout/partial/compoment/aside/asidePower.ejs +0 -31
- package/layout/partial/compoment/aside/asideSwitch.ejs +0 -41
- package/layout/partial/compoment/aside/asideTag.ejs +0 -5
- package/layout/partial/compoment/aside/asideToc.ejs +0 -11
- package/layout/partial/compoment/aside/asideWebInfo.ejs +0 -60
- package/layout/partial/compoment/aside/asideWelcome.ejs +0 -33
- package/layout/partial/compoment/circle/angle.ejs +0 -26
- package/layout/partial/compoment/circle/banner.ejs +0 -11
- package/layout/partial/compoment/circle/content.ejs +0 -19
- package/layout/partial/compoment/dorakika/rightmenu.ejs +0 -100
- package/layout/partial/compoment/equipment/list.ejs +0 -37
- package/layout/partial/compoment/home/homeCategoryBar.ejs +0 -11
- package/layout/partial/compoment/home/postList.ejs +0 -37
- package/layout/partial/compoment/hometop/bbTimeList.ejs +0 -15
- package/layout/partial/compoment/hometop/categoryGroup.ejs +0 -19
- package/layout/partial/compoment/hometop/groupTag.ejs +0 -30
- package/layout/partial/compoment/hometop/topGroup.ejs +0 -41
- package/layout/partial/compoment/inject/body.ejs +0 -70
- package/layout/partial/compoment/links/angle.ejs +0 -26
- package/layout/partial/compoment/links/banner.ejs +0 -42
- package/layout/partial/compoment/links/linksCard.ejs +0 -27
- package/layout/partial/compoment/links/linksItem.ejs +0 -21
- package/layout/partial/compoment/mixins/articleSort.ejs +0 -26
- package/layout/partial/compoment/mixins/pagination.ejs +0 -11
- package/layout/partial/compoment/nav/left.ejs +0 -22
- package/layout/partial/compoment/nav/menu.ejs +0 -25
- package/layout/partial/compoment/nav/right.ejs +0 -42
- package/layout/partial/compoment/post/award.ejs +0 -60
- package/layout/partial/compoment/post/copyright.ejs +0 -39
- package/layout/partial/compoment/post/postMeta.ejs +0 -85
- package/layout/partial/compoment/post/postNav.ejs +0 -41
- package/layout/partial/compoment/post/wave.ejs +0 -14
- package/layout/partial/compoment/says/banner.ejs +0 -10
- package/layout/partial/compoment/says/saysBottom.ejs +0 -18
- package/layout/partial/compoment/says/saysContent.ejs +0 -10
- package/layout/partial/compoment/says/saysFunction.ejs +0 -15
- package/layout/partial/compoment/third-party/comments/comment.ejs +0 -12
- package/layout/partial/compoment/third-party/comments/twikoo_k.ejs +0 -29
- package/layout/partial/compoment/third-party/music.ejs +0 -5
- package/layout/partial/compoment/third-party/pjax.ejs +0 -31
- package/layout/partial/compoment/third-party/search/algolia-search.ejs +0 -20
- package/layout/partial/compoment/third-party/search/index.ejs +0 -10
- package/layout/partial/compoment/third-party/search/local-search.ejs +0 -22
- package/layout/partial/compoment/tlink/banner.ejs +0 -10
- package/layout/partial/console.ejs +0 -68
- package/layout/partial/footer.ejs +0 -109
- package/layout/partial/head.ejs +0 -37
- package/layout/partial/header.ejs +0 -6
- package/layout/partial/hometop.ejs +0 -15
- package/layout/partial/nav.ejs +0 -34
- package/layout/partial/pwa.ejs +0 -40
- package/layout/partial/sidebar.ejs +0 -31
- package/layout/post.ejs +0 -52
- package/layout/tag.ejs +0 -19
- package/scripts/helper/randomLinks.js +0 -16
- package/scripts/helper/themeJsExport.js +0 -79
- package/source/css/commentBarrage.css +0 -174
- package/source/css/custom.css +0 -901
- package/source/css/main.css +0 -16285
- package/source/css/search/algolia-search.css +0 -141
- package/source/css/search/local-search.css +0 -138
- package/source/css/var.css +0 -189
- /package/source/js/{rightmenu.js → rightside.js} +0 -0
package/_config.yml
CHANGED
@@ -14,52 +14,52 @@ nav:
|
|
14
14
|
left:
|
15
15
|
enable: false
|
16
16
|
menu:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
# 项目:
|
18
|
+
# Solitude:
|
19
|
+
# icon: https://bu.dusays.com/2023/11/08/654af68b25bb8.jpg
|
20
|
+
# url: https://github.com/DuoSco/Hexo-Theme-solitude
|
21
21
|
|
22
22
|
# 导航栏内容
|
23
23
|
menu:
|
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
|
-
|
24
|
+
文库:
|
25
|
+
url: false
|
26
|
+
child:
|
27
|
+
文章列表:
|
28
|
+
url: /archives/
|
29
|
+
icon: scoicon sco-folder-fill
|
30
|
+
全部分类:
|
31
|
+
url: /categories/
|
32
|
+
icon: scoicon sco-checkbox-multiple-blank-fill
|
33
|
+
全部标签:
|
34
|
+
url: /tags/
|
35
|
+
icon: scoicon sco-price-tag-fill
|
36
|
+
# 友链:
|
37
|
+
# url: false
|
38
|
+
# child:
|
39
|
+
# 鱼塘:
|
40
|
+
# url: /moments/
|
41
|
+
# icon: scoicon sco-wifi-fill
|
42
|
+
# 友情链接:
|
43
|
+
# url: /links/
|
44
|
+
# icon: scoicon sco-group-fill
|
45
|
+
# 宝藏博主:
|
46
|
+
# url: javascript:travelling()
|
47
|
+
# icon: scoicon sco-gift-fill
|
48
|
+
# 我的:
|
49
|
+
# url: false
|
50
|
+
# child:
|
51
|
+
# 装备:
|
52
|
+
# url: /equipment/
|
53
|
+
# icon: scoicon sco-laptop-line
|
54
|
+
# 工具箱:
|
55
|
+
# url: /tlink/
|
56
|
+
# icon: scoicon sco-tools-fill
|
57
|
+
# 关于:
|
58
|
+
# url: false
|
59
|
+
# child:
|
60
|
+
# 关于本站:
|
61
|
+
# url: /about/
|
62
|
+
# icon: scoicon sco-contacts-fill
|
63
63
|
|
64
64
|
|
65
65
|
# 导航栏右侧快捷菜单 (true,false)
|
@@ -68,43 +68,38 @@ nav:
|
|
68
68
|
random: false # 随机文章跳转
|
69
69
|
console: false #控制台
|
70
70
|
|
71
|
-
# 自定义icon
|
72
|
-
icon:
|
73
|
-
customicon:
|
74
|
-
|
75
71
|
# 首页顶部样式
|
76
72
|
hometop:
|
77
|
-
bbtime: false # 即刻顶部是否开启
|
78
73
|
banner:
|
79
74
|
enable: false # 是否打开顶部banner
|
80
75
|
title: 宁静致远<br>热爱生活 # 左上角显示文字
|
81
76
|
url: Hexo-Theme-Solitude # title下方小字
|
82
77
|
# 轮播icon
|
83
78
|
icon:
|
84
|
-
HTML:
|
85
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/HTML.png
|
86
|
-
color: '#e9572b'
|
87
|
-
JS:
|
88
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/JS.png
|
89
|
-
color: '#f7cb4f'
|
90
|
-
Kotlin:
|
91
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/kotlin-logo.svg
|
92
|
-
color: '#ffffff'
|
93
|
-
Docker:
|
94
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/docker.png
|
95
|
-
color: '#57b6e6'
|
96
|
-
Flutter:
|
97
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/flutter.png
|
98
|
-
color: '#ffffff'
|
99
|
-
WebPack:
|
100
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/webpack.png
|
101
|
-
color: '#2e3a41'
|
102
|
-
Git:
|
103
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/git.png
|
104
|
-
color: '#df5b40'
|
105
|
-
VS:
|
106
|
-
img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/vs-logo.svg
|
107
|
-
color: '#ffffff'
|
79
|
+
# HTML:
|
80
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/HTML.png
|
81
|
+
# color: '#e9572b'
|
82
|
+
# JS:
|
83
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/JS.png
|
84
|
+
# color: '#f7cb4f'
|
85
|
+
# Kotlin:
|
86
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/kotlin-logo.svg
|
87
|
+
# color: '#ffffff'
|
88
|
+
# Docker:
|
89
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/docker.png
|
90
|
+
# color: '#57b6e6'
|
91
|
+
# Flutter:
|
92
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/flutter.png
|
93
|
+
# color: '#ffffff'
|
94
|
+
# WebPack:
|
95
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/webpack.png
|
96
|
+
# color: '#2e3a41'
|
97
|
+
# Git:
|
98
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/git.png
|
99
|
+
# color: '#df5b40'
|
100
|
+
# VS:
|
101
|
+
# img: https://npm.elemecdn.com/wleelw-blog-abs@1.0.0/img/icon/vs-logo.svg
|
102
|
+
# color: '#ffffff'
|
108
103
|
|
109
104
|
# 顶部三大分类
|
110
105
|
categoryGroup:
|
@@ -143,13 +138,17 @@ aside:
|
|
143
138
|
Sticky: "newestPost,allInfo"
|
144
139
|
# 爱发电
|
145
140
|
power:
|
146
|
-
link: https://afdian.net/a/wleelw0u0
|
147
|
-
|
148
|
-
|
141
|
+
link: https://afdian.net/a/wleelw0u0 # 爱发电链接
|
142
|
+
# list:
|
143
|
+
# - name: 王卓Sco
|
144
|
+
# avatar: https://bu.dusays.com/2023/11/04/6545e8a57f97b.jpg
|
145
|
+
# descr: 宁静致远,热爱生活。
|
146
|
+
# link: https://afdian.net/u/wleelw0u0
|
149
147
|
# 侧边栏个人信息卡片
|
150
148
|
card:
|
149
|
+
# 头像信息
|
151
150
|
author:
|
152
|
-
img: https://bu.dusays.com/2023/11/08/654af68b25bb8.jpg #
|
151
|
+
img: https://bu.dusays.com/2023/11/08/654af68b25bb8.jpg # 头像图片
|
153
152
|
js: https://cdn3.codesign.qq.com/icons/XgRxnjPG4VZLmqr/latest/iconfont.js # 自定义图标js(用于显示带颜色的状态表情)
|
154
153
|
state: "#sco-smile" # 状态表情(使用symbol)
|
155
154
|
content: 分享自己对编程的<b>热爱</b>,对美好生活的<b>向往</b>,对知识海洋<b>探索历程</b>。 # 文案1
|
@@ -162,10 +161,6 @@ aside:
|
|
162
161
|
Bilibili:
|
163
162
|
icon: scoicon sco-bilibili-line
|
164
163
|
url: https://space.bilibili.com/1329819902
|
165
|
-
# 跳转按钮
|
166
|
-
button:
|
167
|
-
text: 了解更多
|
168
|
-
url: /about/
|
169
164
|
# 公众号二维码
|
170
165
|
flip:
|
171
166
|
favicon: # 右下角头像
|
@@ -175,7 +170,7 @@ aside:
|
|
175
170
|
welcome:
|
176
171
|
enable: false
|
177
172
|
title: #【选填】留空将默认显示为:来访者
|
178
|
-
icon:
|
173
|
+
icon: #【选填】留空将默认显示为:scoicon sco-map-pin-line
|
179
174
|
key: # 腾讯key
|
180
175
|
longitude: 112.8455033596802 # 经度
|
181
176
|
Latitude: 26.430308353457896 # 纬度
|
@@ -183,20 +178,31 @@ aside:
|
|
183
178
|
history:
|
184
179
|
enable: false
|
185
180
|
title: #【选填】留空将默认显示为:那年今日
|
186
|
-
icon:
|
181
|
+
icon: #【选填】留空将默认显示为:scoicon sco-calendar-line
|
187
182
|
# 页面目录
|
188
183
|
toc:
|
189
184
|
post: true # 在文章页显示
|
190
185
|
page: false # 在任意页显示
|
191
186
|
|
187
|
+
# 侧边栏文章列表
|
188
|
+
tags:
|
189
|
+
enable: false # 是否显示标签
|
190
|
+
highlight: false # 高亮显示
|
191
|
+
list: # 高亮显示标签列表
|
192
|
+
- 'Solitude-使用'
|
193
|
+
|
194
|
+
# 侧边栏归档
|
195
|
+
archive:
|
196
|
+
enable: false # 是否显示
|
197
|
+
|
192
198
|
# 建站信息
|
193
199
|
siteinfo:
|
194
|
-
postcount:
|
195
|
-
wordcount:
|
196
|
-
pv:
|
197
|
-
uv:
|
198
|
-
updatetime:
|
199
|
-
runtimeenable:
|
200
|
+
postcount: true # 文章数
|
201
|
+
wordcount: true # 总字数
|
202
|
+
pv: true # 访问量
|
203
|
+
uv: true # 访客数
|
204
|
+
updatetime: true # 最后更新日期
|
205
|
+
runtimeenable: true # 建站时间
|
200
206
|
runtime: '2023-04-20 00:00:00' # 格式:yyyy-MM-dd hh-mm-ss
|
201
207
|
|
202
208
|
# Footer Settings
|
@@ -205,53 +211,53 @@ footer:
|
|
205
211
|
# 底部上方一排图标
|
206
212
|
information:
|
207
213
|
left: # 左侧显示图标
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
+
# Github:
|
215
|
+
# icon: scoicon sco-bilibili-line
|
216
|
+
# url: https://github.com/wleelw
|
217
|
+
# Mail:
|
218
|
+
# icon: scoicon sco-mail-line
|
219
|
+
# url: mailto:wleelw@wzsco.top
|
214
220
|
right: # 右侧显示图标
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
+
# Bilibili:
|
222
|
+
# icon: scoicon sco-bilibili-line
|
223
|
+
# url: https://space.bilibili.com/1329819902
|
224
|
+
# 抖音:
|
225
|
+
# icon: scoicon sco-douyin-fill
|
226
|
+
# url: https://v.douyin.com/iJsLc8jt/
|
221
227
|
# 底部导航栏
|
222
228
|
group: # 从左至右
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
229
|
+
# 导航:
|
230
|
+
# 归档: /archives/
|
231
|
+
# 分类: /categories/
|
232
|
+
# 标签: /tags/
|
233
|
+
# 服务:
|
234
|
+
# 阿里云: https://aliyun.com/
|
235
|
+
# 51la统计: https://v6.51.la/
|
236
|
+
# 百度统计: https://tongji.baidu.com/
|
237
|
+
# 支持:
|
238
|
+
# 打赏记录: /about/
|
239
|
+
# 协议:
|
240
|
+
# Cookies: /cookies/
|
241
|
+
# 用户协议: /privacy/
|
242
|
+
# 版权协议: /copyright/
|
237
243
|
|
238
244
|
# 底部随机友链
|
239
|
-
randomlink: false
|
245
|
+
randomlink: false # 是否开启
|
240
246
|
# rss
|
241
247
|
rss:
|
242
|
-
enable: false
|
248
|
+
enable: false # 是否显示
|
243
249
|
wechatOA: # 微信公众号链接
|
244
250
|
emailOA: # 邮箱链接
|
245
251
|
rss: # rss订阅链接
|
246
252
|
# 版权
|
247
253
|
license:
|
248
|
-
url: /copyright/
|
254
|
+
url: /copyright/ # 点击跳转链接
|
249
255
|
|
250
256
|
# 页面页默认设置
|
251
257
|
page:
|
252
|
-
error: true
|
253
|
-
tags: true #
|
254
|
-
categories: true #
|
258
|
+
error: true # 404页面
|
259
|
+
tags: true # 标签页
|
260
|
+
categories: true # 分类页
|
255
261
|
default: # 默认值
|
256
262
|
cover: /img/default.png # 默认图片
|
257
263
|
|
@@ -260,7 +266,10 @@ post:
|
|
260
266
|
default:
|
261
267
|
cover: /img/default.png
|
262
268
|
locate: 衡阳
|
263
|
-
copyright:
|
269
|
+
copyright:
|
270
|
+
enable: true
|
271
|
+
license: CC BY-NC-SA 4.0
|
272
|
+
licenurl: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh
|
264
273
|
# 顶部文章简介
|
265
274
|
meta:
|
266
275
|
date: false # 发布日期
|
@@ -278,36 +287,52 @@ post:
|
|
278
287
|
url: /about # 打赏统计页面链接
|
279
288
|
# 文章颜色获取
|
280
289
|
covercolor: #文章cover取色
|
281
|
-
enable:
|
282
|
-
local: true
|
290
|
+
enable: false # 是否开启
|
291
|
+
local: true # 本地取色
|
292
|
+
# 底部头像背景
|
293
|
+
author_back: https://bu.dusays.com/2023/11/01/6541f6d4b2573.png
|
283
294
|
|
284
295
|
# 关于界面
|
285
|
-
about:
|
296
|
+
about:
|
297
|
+
enable: false # 是否开启
|
298
|
+
echarts: # 文章统计
|
299
|
+
enable: false # 是否开启
|
300
|
+
startDate: "2023-04-20 00:00:00" # 统计开始日期 格式:yyyy-MM-dd hh-mm-ss
|
301
|
+
tagLength: 10 # 标签显示数量
|
302
|
+
categoryParent: true # 显示父分类
|
303
|
+
|
304
|
+
# 即刻说说界面
|
305
|
+
# 前置要求:需配置即刻说说页面
|
306
|
+
# 开启后将显示即刻页面
|
307
|
+
says:
|
308
|
+
enable: false
|
309
|
+
home_mini: false # 主页的即刻轮播条
|
310
|
+
style: 1 # 1:张洪heo样式 / 2:Leonus样式
|
286
311
|
|
287
312
|
# 404 页面
|
288
313
|
errorpage:
|
289
|
-
img: https://npm.elemecdn.com/wzheo-absolute@1.0.3/image/source/404.png
|
290
|
-
text: =awa= 页面走丢了
|
291
|
-
recommendList: true #
|
314
|
+
img: https://npm.elemecdn.com/wzheo-absolute@1.0.3/image/source/404.png # 图片
|
315
|
+
text: =awa= 页面走丢了 # 文字
|
316
|
+
recommendList: true # 推荐文章列表
|
292
317
|
|
293
318
|
# 懒加载
|
294
319
|
lazyload:
|
295
|
-
enable: false
|
320
|
+
enable: false # 是否开启
|
296
321
|
placeholder: /img/loading.gif # 加载中显示图片
|
297
322
|
errorimg: /img/error_load.png # 加载失败显示图片
|
298
323
|
|
299
324
|
# 图片灯箱
|
300
|
-
lightbox: false
|
325
|
+
lightbox: false # 是否开启
|
301
326
|
|
302
327
|
#代码高亮增强
|
303
328
|
hightlight:
|
304
|
-
enable: false
|
305
|
-
hightlimit: 200
|
329
|
+
enable: false # 是否开启
|
330
|
+
hightlimit: 200 # 代码高亮字数限制
|
306
331
|
|
307
332
|
# 加载动画
|
308
333
|
loading:
|
309
|
-
fullpage: false
|
310
|
-
pace: false
|
334
|
+
fullpage: false # 全局加载动画
|
335
|
+
pace: false # 顶部加载动画
|
311
336
|
|
312
337
|
# 第三方设置
|
313
338
|
thirdparty:
|
@@ -316,6 +341,8 @@ thirdparty:
|
|
316
341
|
enable: false
|
317
342
|
usecomment: false #当评论系统开启时文章页面使用评论系统的统计数据
|
318
343
|
search: # 搜索
|
344
|
+
enable: false
|
345
|
+
type: algolia # algolia, local
|
319
346
|
algolia_search:
|
320
347
|
enable: false
|
321
348
|
# hits:
|
@@ -327,8 +354,8 @@ thirdparty:
|
|
327
354
|
|
328
355
|
aplayer: # 播放器
|
329
356
|
enable: false
|
330
|
-
server:
|
331
|
-
id:
|
357
|
+
server: netease # netease, tencent, kugou, xiami, baidu
|
358
|
+
id: 8407304077 # 歌单ID
|
332
359
|
api: "https://api.injahow.cn/meting/?server=:server&type=:type&id=:id&auth=:auth&r=:r" #自定义api
|
333
360
|
#中控台拓展
|
334
361
|
consolePlus: false
|
@@ -337,93 +364,115 @@ thirdparty:
|
|
337
364
|
enable: false
|
338
365
|
key: # 前往tianli-AI 购买
|
339
366
|
rec_method: # 推荐文章方式(all:匹配数据库所有文章、web:仅当前博客文章)默认:web
|
367
|
+
ai_name: # 左上角AI名称
|
368
|
+
ai_tips: # 右上角GPT版本文字
|
369
|
+
ai_introduce: # AI自我介绍
|
370
|
+
hide_shuttle: false # 隐藏矩阵穿梭按钮
|
371
|
+
typewriter: true # 打字机效果
|
372
|
+
speed: 20 # 打字机速度,默认20ms
|
373
|
+
BlackWhite_List:
|
374
|
+
mode: false # false:全部文章显示摘要AI / black:让指定页面、文章不显示摘要AI / white:只让指定文章(页面)显示摘要AI
|
375
|
+
List:
|
376
|
+
# - 544ba770
|
377
|
+
# - /article/544ba770.html
|
340
378
|
|
341
379
|
# 朋友圈配置
|
342
380
|
circle:
|
343
|
-
api: https://circle.sondy.top/
|
344
|
-
error_img: /img/theme/avatar.png #
|
345
|
-
sort_rule: created #
|
346
|
-
expire_days: 1 #
|
347
|
-
page_init_number: 12 #
|
348
|
-
page_turning_number: 12 #
|
349
|
-
angle: #
|
350
|
-
enable:
|
381
|
+
api: https://circle.sondy.top/ # 朋友圈api
|
382
|
+
error_img: /img/theme/avatar.png # 加载失败显示图片
|
383
|
+
sort_rule: created # 排序规则(created:创建时间、updated:更新时间)
|
384
|
+
expire_days: 1 # 缓存过期时间(天)
|
385
|
+
page_init_number: 12 # 首次加载文章数,默认10
|
386
|
+
page_turning_number: 12 # 翻页加载文章数,默认10
|
387
|
+
angle: # 🎣钓鱼
|
388
|
+
enable: true # 是否开启
|
351
389
|
appjs: '/lib/circle.min.js' # 主题appjs
|
352
|
-
bundlejs: '/lib/bundle.min.js' # 主题
|
353
|
-
|
354
|
-
# 文章统计
|
355
|
-
echarts:
|
356
|
-
js: https://cdn.bootcdn.net/ajax/libs/echarts/5.4.2/echarts.min.js
|
390
|
+
bundlejs: '/lib/bundle.min.js' # 主题bundlejs
|
357
391
|
|
358
392
|
# 评论
|
359
393
|
comment:
|
360
|
-
enable: false
|
394
|
+
enable: false # 是否开启评论
|
395
|
+
type: 'twikoo' # valine, twikoo
|
396
|
+
# 评论系统
|
361
397
|
twikoo:
|
362
|
-
envId: https://twikoo.sondy.top
|
363
|
-
lang: 'zh-CN'
|
398
|
+
envId: # url: https://twikoo.sondy.top/
|
399
|
+
lang: 'zh-CN' # 语言
|
364
400
|
accessToken: # accessToken
|
365
401
|
|
366
402
|
# 插入代码到头部 </head> 之前 和 底部 </body> 之前
|
367
403
|
# 插入额外代码 如:统计,广告等
|
368
404
|
extends:
|
369
405
|
head: # 在head中插入
|
406
|
+
# - <script src="https://cdn.bootcdn.net/ajax/libs/pace/1.2.4/pace.min.js"></script>
|
370
407
|
body: # 在body中插入
|
371
408
|
|
372
409
|
# 文章底部推荐文章
|
373
410
|
related_post:
|
374
|
-
enable:
|
411
|
+
enable: false
|
375
412
|
limit: 2 # 推荐文章数量
|
376
413
|
date_type: created # 根据创建日期(created)或是更新日期(updated)
|
377
414
|
|
378
|
-
#
|
415
|
+
# rightside(右键菜单)
|
416
|
+
rightside:
|
417
|
+
enable: false
|
379
418
|
|
380
419
|
# 站点验证
|
420
|
+
# 仅需要填写验证代码即可
|
381
421
|
verify:
|
382
422
|
# 百度
|
383
423
|
baidu:
|
424
|
+
# 谷歌
|
425
|
+
google:
|
384
426
|
|
385
427
|
# PWA
|
428
|
+
# 图标信息非必选,填了就显示,不想添加的可以进行注释
|
386
429
|
# https://github.com/JLHwung/hexo-offline
|
387
430
|
pwa:
|
388
|
-
enable: false
|
389
|
-
startup_image_enable: false
|
390
|
-
manifest: /manifest.json
|
391
|
-
theme_color: '#ffffff'
|
392
|
-
mask_icon: /img/pwa/180.png
|
393
|
-
apple_touch_icon: /img/pwa/180.png
|
394
|
-
bookmark_icon: /img/pwa/180.png
|
395
|
-
favicon_32_32: /img/pwa/32.png
|
396
|
-
favicon_16_16: /img/pwa/16.png
|
397
|
-
favicon_2048_2732: /img/pwa/siteicon/splash-2048x2732.png
|
398
|
-
favicon_2732_2048: /img/pwa/siteicon/splash-2732x2048.png
|
399
|
-
favicon_1668_2388: /img/pwa/siteicon/splash-1668x2388.png
|
400
|
-
favicon_2388_1668: /img/pwa/siteicon/splash-2388x1668.png
|
401
|
-
favicon_1536_2048: /img/pwa/siteicon/splash-1536x2048.png
|
402
|
-
favicon_2048_1536: /img/pwa/siteicon/splash-2048x1536.png
|
403
|
-
favicon_1668_2224: /img/pwa/siteicon/splash-1668x2224.png
|
404
|
-
favicon_2224_1668: /img/pwa/siteicon/splash-2224x1668.png
|
405
|
-
favicon_1620_2160: /img/pwa/siteicon/splash-1620x2160.png
|
406
|
-
favicon_2160_1620: /img/pwa/siteicon/splash-2160x1620.png
|
407
|
-
favicon_1290_2796: /img/pwa/siteicon/splash-1290x2796.png
|
408
|
-
favicon_2796_1290: /img/pwa/siteicon/splash-2796x1290.png
|
409
|
-
favicon_1179_2556: /img/pwa/siteicon/splash-1179x2556.png
|
410
|
-
favicon_2556_1179: /img/pwa/siteicon/splash-2556x1179.png
|
411
|
-
favicon_1248_2778: /img/pwa/siteicon/splash-1248x2778.png
|
412
|
-
favicon_2778_1248: /img/pwa/siteicon/splash-2778x1248.png
|
413
|
-
favicon_1170_2532: /img/pwa/siteicon/splash-1170x2532.png
|
414
|
-
favicon_2532_1170: /img/pwa/siteicon/splash-2532x1170.png
|
415
|
-
favicon_1125_2436: /img/pwa/siteicon/splash-1125x2436.png
|
416
|
-
favicon_2436_1125: /img/pwa/siteicon/splash-2436x1125.png
|
417
|
-
favicon_1242_2688: /img/pwa/siteicon/splash-1242x2688.png
|
418
|
-
favicon_2688_1242: /img/pwa/siteicon/splash-2688x1242.png
|
419
|
-
favicon_828_1792: /img/pwa/siteicon/splash-828x1792.png
|
420
|
-
favicon_1792_828: /img/pwa/siteicon/splash-1792x828.png
|
421
|
-
favicon_1242_2208: /img/pwa/siteicon/splash-1242x2208.png
|
422
|
-
favicon_2208_1242: /img/pwa/siteicon/splash-2208x1242.png
|
423
|
-
favicon_750_1334: /img/pwa/siteicon/splash-750x1334.png
|
424
|
-
favicon_1334_750: /img/pwa/siteicon/splash-1334x750.png
|
425
|
-
favicon_640_1136: /img/pwa/siteicon/splash-640x1136.png
|
426
|
-
favicon_1136_640: /img/pwa/siteicon/splash-1136x640.png
|
431
|
+
enable: false # 是否开启
|
432
|
+
startup_image_enable: false # 是否开启启动画面
|
433
|
+
manifest: /manifest.json # manifest.json 文件路径
|
434
|
+
theme_color: '#ffffff' # 主题颜色
|
435
|
+
mask_icon: /img/pwa/180.png # 遮罩图标
|
436
|
+
apple_touch_icon: /img/pwa/180.png # 苹果触摸图标
|
437
|
+
bookmark_icon: /img/pwa/180.png # 书签图标
|
438
|
+
favicon_32_32: /img/pwa/32.png # 32x32图标
|
439
|
+
favicon_16_16: /img/pwa/16.png # 16x16图标
|
440
|
+
favicon_2048_2732: /img/pwa/siteicon/splash-2048x2732.png # 2048x2732图标
|
441
|
+
favicon_2732_2048: /img/pwa/siteicon/splash-2732x2048.png # 2732x2048图标
|
442
|
+
favicon_1668_2388: /img/pwa/siteicon/splash-1668x2388.png # 1668x2388图标
|
443
|
+
favicon_2388_1668: /img/pwa/siteicon/splash-2388x1668.png # 2388x1668图标
|
444
|
+
favicon_1536_2048: /img/pwa/siteicon/splash-1536x2048.png # 1536x2048图标
|
445
|
+
favicon_2048_1536: /img/pwa/siteicon/splash-2048x1536.png # 2048x1536图标
|
446
|
+
favicon_1668_2224: /img/pwa/siteicon/splash-1668x2224.png # 1668x2224图标
|
447
|
+
favicon_2224_1668: /img/pwa/siteicon/splash-2224x1668.png # 2224x1668图标
|
448
|
+
favicon_1620_2160: /img/pwa/siteicon/splash-1620x2160.png # 1620x2160图标
|
449
|
+
favicon_2160_1620: /img/pwa/siteicon/splash-2160x1620.png # 2160x1620图标
|
450
|
+
favicon_1290_2796: /img/pwa/siteicon/splash-1290x2796.png # 1290x2796图标
|
451
|
+
favicon_2796_1290: /img/pwa/siteicon/splash-2796x1290.png # 2796x1290图标
|
452
|
+
favicon_1179_2556: /img/pwa/siteicon/splash-1179x2556.png # 1179x2556图标
|
453
|
+
favicon_2556_1179: /img/pwa/siteicon/splash-2556x1179.png # 2556x1179图标
|
454
|
+
favicon_1248_2778: /img/pwa/siteicon/splash-1248x2778.png # 1248x2778图标
|
455
|
+
favicon_2778_1248: /img/pwa/siteicon/splash-2778x1248.png # 2778x1248图标
|
456
|
+
favicon_1170_2532: /img/pwa/siteicon/splash-1170x2532.png # 1170x2532图标
|
457
|
+
favicon_2532_1170: /img/pwa/siteicon/splash-2532x1170.png # 2532x1170图标
|
458
|
+
favicon_1125_2436: /img/pwa/siteicon/splash-1125x2436.png # 1125x2436图标
|
459
|
+
favicon_2436_1125: /img/pwa/siteicon/splash-2436x1125.png # 2436x1125图标
|
460
|
+
favicon_1242_2688: /img/pwa/siteicon/splash-1242x2688.png # 1242x2688图标
|
461
|
+
favicon_2688_1242: /img/pwa/siteicon/splash-2688x1242.png # 2688x1242图标
|
462
|
+
favicon_828_1792: /img/pwa/siteicon/splash-828x1792.png # 828x1792图标
|
463
|
+
favicon_1792_828: /img/pwa/siteicon/splash-1792x828.png # 1792x828图标
|
464
|
+
favicon_1242_2208: /img/pwa/siteicon/splash-1242x2208.png # 1242x2208图标
|
465
|
+
favicon_2208_1242: /img/pwa/siteicon/splash-2208x1242.png # 2208x1242图标
|
466
|
+
favicon_750_1334: /img/pwa/siteicon/splash-750x1334.png # 750x1334图标
|
467
|
+
favicon_1334_750: /img/pwa/siteicon/splash-1334x750.png # 1334x750图标
|
468
|
+
favicon_640_1136: /img/pwa/siteicon/splash-640x1136.png # 640x1136图标
|
469
|
+
favicon_1136_640: /img/pwa/siteicon/splash-1136x640.png # 1136x640图标
|
470
|
+
|
471
|
+
# CSS 前缀
|
472
|
+
# 有些 CSS 并不是所有浏览器都支持,需要增加对应的前缀才会生效
|
473
|
+
# 开启 css_prefix 后,会自动为一些 CSS 增加前缀。(会增加 20%的体积)
|
474
|
+
# --------------------------------------
|
475
|
+
css_prefix: false
|
427
476
|
|
428
477
|
# 非必要勿动
|
429
478
|
cdn:
|
@@ -434,8 +483,10 @@ cdn:
|
|
434
483
|
swipercss: https://cdn.bootcdn.net/ajax/libs/Swiper/9.2.4/swiper-bundle.min.css
|
435
484
|
twikoojs: https://cdn.bootcdn.net/ajax/libs/twikoo/1.6.20/twikoo.all.min.js
|
436
485
|
instantsearch: https://cdn.bootcdn.net/ajax/libs/instantsearch.js/4.9.1/instantsearch.production.min.js
|
437
|
-
|
486
|
+
algoliajs: https://cdn.bootcdn.net/ajax/libs/algoliasearch/4.9.3/algoliasearch-lite.umd.min.js
|
438
487
|
pacejs: https://cdn.bootcdn.net/ajax/libs/pace/1.2.4/pace.min.js
|
488
|
+
echartsjs: https://cdn.bootcdn.net/ajax/libs/echarts/5.4.2/echarts.min.js
|
489
|
+
lunrjs: https://cdn.bootcdn.net/ajax/libs/lunr.js/2.3.9/lunr.min.js
|
439
490
|
body:
|
440
491
|
viewimagejs: /lib/view-image.min.js
|
441
492
|
waterfalljs: /lib/waterfall.min.js
|
package/languages/en-US.yml
CHANGED
package/languages/zh-CN.yml
CHANGED
@@ -14,17 +14,17 @@ time:
|
|
14
14
|
runtime: 天
|
15
15
|
|
16
16
|
sayhello:
|
17
|
-
morning:
|
18
|
-
noon:
|
19
|
-
afternoon:
|
20
|
-
night:
|
21
|
-
goodnight:
|
22
|
-
iam: '! 我是'
|
17
|
+
morning: 一日之计在于晨
|
18
|
+
noon: 吃饱了才有力气干活
|
19
|
+
afternoon: 集中精力,攻克难关
|
20
|
+
night: 不要太劳累了,早睡更健康
|
21
|
+
goodnight: 睡个好觉,保证精力充沛
|
23
22
|
|
24
23
|
page:
|
25
24
|
tag: 标签
|
26
25
|
category: 分类
|
27
26
|
archives: 文章
|
27
|
+
echarts: 博客统计
|
28
28
|
|
29
29
|
nav:
|
30
30
|
backtop: 返回顶部
|
@@ -34,6 +34,6 @@ nav:
|
|
34
34
|
console: 中控台
|
35
35
|
|
36
36
|
search:
|
37
|
-
empty:
|
38
|
-
hit:
|
37
|
+
empty: 找不到你查询的内容:${query}
|
38
|
+
hit: 找到 ${hits} 条结果,用时 ${time} 毫秒
|
39
39
|
placeholder: 输入关键词快速查找
|