mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 17:40:55 +08:00
feat: 點擊文字特效增加隨機配置 feat: 可配置是否添加css前綴 fix: 修復子目錄下,配置justifiedGallery CDN(相對鏈接)後,連接會無法訪問的bugs fix: 修復 pangu 配置post 後,仍在全站生效的bugs improvement: 夜間模式下,廣告降低亮度 improvement: 手機端toc邊距微調 improvement: html格式優化 improvement: 搜索優化 improvement: 刪除不必要的語言文件
31 lines
988 B
Plaintext
31 lines
988 B
Plaintext
extends includes/layout.pug
|
|
|
|
block content
|
|
#post
|
|
if top_img === false
|
|
include includes/header/post-info.pug
|
|
|
|
article#article-container.post-content!=page.content
|
|
include includes/post/post-copyright.pug
|
|
.tag_share
|
|
if (theme.post_meta.post.tags)
|
|
.post-meta__tag-list
|
|
each item, index in page.tags.data
|
|
a(href=url_for(item.path)).post-meta__tags #[=item.name]
|
|
include includes/third-party/share/index.pug
|
|
|
|
if theme.reward.enable
|
|
!=partial('includes/post/reward', {}, {cache:theme.fragment_cache})
|
|
|
|
//- ad
|
|
if theme.ad && theme.ad.post
|
|
.ads-wrap!=theme.ad.post
|
|
|
|
include includes/pagination.pug
|
|
if theme.related_post && theme.related_post.enable
|
|
!= related_posts(page,site.posts)
|
|
|
|
if page.comments !== false && theme.comments && theme.comments.use
|
|
- var commentsJsLoad = true
|
|
!=partial('includes/third-party/comments/index', {}, {cache:theme.fragment_cache})
|
|
|