mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 14:07:06 +08:00
feat: 添加 artitalk 説説插件
style: 主題文件分類調正
This commit is contained in:
1
layout/includes/page/artitalk.pug
Normal file
1
layout/includes/page/artitalk.pug
Normal file
@@ -0,0 +1 @@
|
||||
#artitalk_main
|
||||
5
layout/includes/page/categories.pug
Normal file
5
layout/includes/page/categories.pug
Normal file
@@ -0,0 +1,5 @@
|
||||
.category-lists
|
||||
.category-title.is-center= _p('page.category')
|
||||
| -
|
||||
span.category-amount= site.categories.length
|
||||
div!= list_categories()
|
||||
6
layout/includes/page/default-page.pug
Normal file
6
layout/includes/page/default-page.pug
Normal file
@@ -0,0 +1,6 @@
|
||||
if theme.douban && theme.douban.meta && doubanExist
|
||||
meta(name="referrer" content="no-referrer")
|
||||
#article-container
|
||||
if top_img === false
|
||||
h1.page-title= page.title
|
||||
!= page.content
|
||||
19
layout/includes/page/flink.pug
Normal file
19
layout/includes/page/flink.pug
Normal file
@@ -0,0 +1,19 @@
|
||||
.flink#article-container
|
||||
if site.data.link
|
||||
each i in site.data.link
|
||||
if i.class_name
|
||||
h2!= i.class_name
|
||||
if i.class_desc
|
||||
.flink-desc!=i.class_desc
|
||||
.flink-list
|
||||
each item in i.link_list
|
||||
.flink-list-item
|
||||
a(href=url_for(item.link) title=item.name target="_blank")
|
||||
if theme.lazyload.enable
|
||||
img(data-lazy-src=url_for(item.avatar) onerror=`this.onerror=null;this.src='` + url_for(theme.error_img.flink) + `'` alt=item.name )
|
||||
else
|
||||
img(src=url_for(item.avatar) onerror=`this.onerror=null;this.src='` + url_for(theme.error_img.flink) + `'` alt=item.name )
|
||||
span.flink-item-name= item.name
|
||||
span.flink-item-desc(title=item.descr)= item.descr
|
||||
!= page.content
|
||||
|
||||
5
layout/includes/page/tags.pug
Normal file
5
layout/includes/page/tags.pug
Normal file
@@ -0,0 +1,5 @@
|
||||
.tag-cloud-title.is-center= _p('page.tag')
|
||||
| -
|
||||
span.tag-cloud-amount= site.tags.length
|
||||
.tag-cloud-list.is-center
|
||||
!=cloudTags({source: site.tags, minfontsize: 1.2, maxfontsize: 2.1, limit: 0, unit: 'em'})
|
||||
Reference in New Issue
Block a user