diff --git a/_config.yml b/_config.yml index d9e3378..5531e1e 100755 --- a/_config.yml +++ b/_config.yml @@ -5,7 +5,7 @@ theme_info: version: 1.0-beta10 docs: https://xaoxuu.com/wiki/material-x/ # 主题的CDN地址,如果你的源码托管到国内CDN可以更改此链接。如需启用CDN,请在主目录的config中设置import,详见文档。 - cdn: https://cdn.jsdelivr.net/gh/xaoxuu/cdn-material-x@18.12.29/ + cdn: https://cdn.jsdelivr.net/gh/xaoxuu/cdn-material-x@18.12.30/ ########################################################################## # 请务必阅读官方文档!!! # 请务必阅读官方文档!!! @@ -15,29 +15,22 @@ theme_info: # style: material # 导航栏和标题栏背景是主题色 style: pure # 导航栏和标题栏背景是白色 - -# 右边的小窗口,不想显示哪一项的把enable设置为false即可 +# 这里的widgets字段是对widget的默认设置,如需修改请参照文档在主目录的config中写。 widgets: - # 博主信息区,是否显示个人头像、格言、社交信息等 - author: - enable: true - avatar: true # 是否显示头像,如果是,需要在主目录的config中写avatar的URL - title: true # 是否显示博客名、头衔等等。如果是,需要在主目录的config中写title - motto: true # 是否显示格言座右铭等等。如果是,需要在主目录的config中写motto - social: true # 是否显示社交信息(内容同页脚的社交信息)如果是,需要在主目录的config中写social,支持icon和URL - # 显示文章分类 - categories: - enable: true + # 文章分类的默认配置 + category: icon: fas fa-folder-open title: "博文分类" - # 显示文章标签 + # 文章标签的默认配置 tagcloud: - enable: true icon: fas fa-tags title: "热门话题" - # 显示音乐播放器 + # 文章目录的默认配置 + toc: + icon: fas fa-list + title: "目录" + # 音乐控件的默认配置 music: - enable: true display: # 批量控制哪一类页面显示 home: false # 在主页是否显示 tag: false # 在标签页面是否显示 @@ -46,26 +39,6 @@ widgets: page: false # layout: page 的页面是否显示 links: true # layout: links 的页面是否显示 post: true # layout: post 的页面是否显示 - icon: fas fa-compact-disc - title: "最近在听" - link: 'https://music.163.com/#/user/home?id=63035382' - color: '#3DC550' # 主题色 - volume: 0.5 # 默认音量大小(0~1之间) - mode: circulation # random (随机) single (单曲) circulation (列表循环) order (列表) - server: netease # netease(网易云音乐)tencent(QQ音乐) xiami(虾米) kugou(酷狗) - type: playlist # song (单曲) album (专辑) playlist (歌单) search (搜索) - id: 746319661 # 歌曲/专辑/歌单 ID - # 显示友链,友链的内容写在主目录的config中 - links: - enable: false - icon: fas fa-handshake - title: "友链" - mailto: "me@xaoxuu.com" # 右边显示➕ ,点击给这个地址发送邮件添加友链 - # 显示目录(在文章中设置toc:false可以隐藏单篇文章的目录) - toc: - enable: true - icon: fas fa-list - title: "目录" # 推荐文章 diff --git a/layout/_partial/archive.ejs b/layout/_partial/archive.ejs index 5653858..196769a 100755 --- a/layout/_partial/archive.ejs +++ b/layout/_partial/archive.ejs @@ -8,7 +8,7 @@ <% } else if (is_category()) { %> <% } %> diff --git a/layout/_partial/side.ejs b/layout/_partial/side.ejs index 1298c80..18e6c4f 100755 --- a/layout/_partial/side.ejs +++ b/layout/_partial/side.ejs @@ -26,7 +26,7 @@ <% if (widget_name == 'toc') { %>
<% } else if(item.more && item.more.url) { %> - diff --git a/layout/_widget copy/author.ejs b/layout/_widget copy/author.ejs deleted file mode 100755 index b8af6b8..0000000 --- a/layout/_widget copy/author.ejs +++ /dev/null @@ -1,28 +0,0 @@ -<% if(theme.widgets.author.enable != false) { %> -
- <% if(theme.widgets.author.avatar) { %> -
- -
- <%} %> - <% if (theme.widgets.author.title == true || theme.widgets.author.motto == true){ %> -
- <% if (theme.widgets.author.title == true){ %> -

<%= config.title %>

- <% } %> - <% if (theme.widgets.author.motto){ %> -

<%= config.motto %>

- <% } %> -
- <% } %> - <% if (theme.widgets.author.social == true && config.social){ %> -
- <% (config.social||[]).forEach(function(value){ %> - <% if (value.url && value.icon) { %> - - <%}%> - <%})%> -
- <% } %> -
-<% } %> diff --git a/layout/_widget copy/categories.ejs b/layout/_widget copy/categories.ejs deleted file mode 100755 index 89f03bd..0000000 --- a/layout/_widget copy/categories.ejs +++ /dev/null @@ -1,14 +0,0 @@ -
-
-
  <%= theme.widgets.categories.title %>
-
-
- <% if (site.categories.length){ %> - - <% } %> -
-
diff --git a/layout/_widget copy/links.ejs b/layout/_widget copy/links.ejs deleted file mode 100755 index afb53c0..0000000 --- a/layout/_widget copy/links.ejs +++ /dev/null @@ -1,24 +0,0 @@ - diff --git a/layout/_widget copy/music.ejs b/layout/_widget copy/music.ejs deleted file mode 100755 index a35ebf1..0000000 --- a/layout/_widget copy/music.ejs +++ /dev/null @@ -1,59 +0,0 @@ -<% -var needDisplay = false; -if (theme.widgets.music && theme.widgets.music.display) { - let display = theme.widgets.music.display; - if (page.layout == 'page') { - if (display.page != false) { - needDisplay = true; - } - } else if (page.layout == 'post') { - if (display.post != false && (!page.music || page.music.enable == false)) { - needDisplay = true; - } - } else if (page.layout == 'links') { - if (display.links != false) { - needDisplay = true; - } - } else { - if (is_home()) { - if (display.home != false) { - needDisplay = true; - } - } else if (is_tag()) { - if (display.tag != false) { - needDisplay = true; - } - } else if (is_category()) { - if (display.category != false) { - needDisplay = true; - } - } else if (is_archive()) { - if (display.archive != false) { - needDisplay = true; - } - } else { - needDisplay = true; - } - } -} -%> - -<% if (needDisplay == true) { %> -
-
-
  <%= theme.widgets.music.title %>
- -
-
-
-
-
- - - -<% } %> diff --git a/layout/_widget copy/tagcloud.ejs b/layout/_widget copy/tagcloud.ejs deleted file mode 100755 index a359357..0000000 --- a/layout/_widget copy/tagcloud.ejs +++ /dev/null @@ -1,16 +0,0 @@ -<% if (site.tags.length){ %> -
-
-
  <%= theme.widgets.tagcloud.title %>
-
-
- <%- tagcloud(site.tags, { - min_font: 14, - max_font: 24, - color: true, - start_color: '#999', - end_color: '#555', - }) %> -
-
-<% } %> diff --git a/layout/_widget copy/toc.ejs b/layout/_widget copy/toc.ejs deleted file mode 100755 index 6d8961b..0000000 --- a/layout/_widget copy/toc.ejs +++ /dev/null @@ -1,11 +0,0 @@ -<% if(page.layout == 'post' && page.content && page.toc!==false && toc(page.content).length > 0){ %> -
-
-
  <%= theme.widgets.toc.title %>
-
-
-
- <%- toc(page.content, {list_number: false}) %> -
-
-<% } %> diff --git a/layout/_widget/music.ejs b/layout/_widget/music.ejs index ab8fd74..eaca01c 100755 --- a/layout/_widget/music.ejs +++ b/layout/_widget/music.ejs @@ -40,12 +40,12 @@ if (theme.widgets.music && theme.widgets.music.display) { <% if (needDisplay == true) { %> -
+