mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-10 21:17:07 +08:00
1. 部分配置更改 feat: 1. 移除 messenger 聊天插件 2. 更新 fackbook 版本號 3. 增加 香港繁體、日文和韓語 4. 使用的新的複製api 代替舊的 5. 增加 umami 分析 6. 增加 umami 獲取訪問量/訪客數 7. snackbar 增加透明度 8. 文章頁下, nav fixed 下 顯示文章標題 improvement: 1. 代碼優化 2. 修改部分用語 3. 回復之前的相對時間邏輯 4. timeline tag 樣式優化 5. 優化 seo 6. 優化 artalk 的最新評論 fix: 1. tag-hide toggle 圓角問題 2. lazyload 為 false 時,artalk 無法正常加載評論的 bug 3. 修復 gallery 出現抖動的 bug
60 lines
2.0 KiB
Plaintext
60 lines
2.0 KiB
Plaintext
div
|
|
script(src=url_for(theme.asset.utils))
|
|
script(src=url_for(theme.asset.main))
|
|
|
|
if theme.translate.enable
|
|
script(src=url_for(theme.asset.translate))
|
|
|
|
if theme.lightbox
|
|
script(src=url_for(theme.asset[theme.lightbox]))
|
|
|
|
if theme.instantpage
|
|
script(src=url_for(theme.asset.instantpage), type='module')
|
|
|
|
if theme.lazyload.enable
|
|
script(src=url_for(theme.asset.lazyload))
|
|
|
|
if theme.snackbar.enable
|
|
script(src=url_for(theme.asset.snackbar))
|
|
|
|
if theme.pangu.enable
|
|
!= partial("includes/third-party/pangu.pug", {}, { cache: true })
|
|
|
|
.js-pjax
|
|
if needLoadCountJs
|
|
!= partial("includes/third-party/card-post-count/index", {}, { cache: true })
|
|
|
|
if loadSubJs
|
|
include ./third-party/subtitle.pug
|
|
|
|
include ./third-party/math/index.pug
|
|
include ./third-party/abcjs/index.pug
|
|
|
|
if commentsJsLoad
|
|
include ./third-party/comments/js.pug
|
|
|
|
!= partial("includes/third-party/prismjs", {}, { cache: true })
|
|
|
|
if theme.aside.enable && theme.aside.card_newest_comments.enable
|
|
if theme.pjax.enable || (!is_post() && page.aside !== false)
|
|
!= partial("includes/third-party/newest-comments/index", {}, { cache: true })
|
|
|
|
!= fragment_cache('injectBottom', function(){return injectHtml(theme.inject.bottom)})
|
|
|
|
!= partial("includes/third-party/effect", {}, { cache: true })
|
|
!= partial("includes/third-party/chat/index", {}, { cache: true })
|
|
|
|
if theme.aplayerInject && theme.aplayerInject.enable
|
|
if theme.pjax.enable || theme.aplayerInject.per_page || page.aplayer
|
|
include ./third-party/aplayer.pug
|
|
|
|
if theme.pjax.enable
|
|
!= partial("includes/third-party/pjax", {}, { cache: true })
|
|
|
|
if theme.umami_analytics.enable
|
|
!= partial("includes/third-party/umami_analytics", {}, { cache: true })
|
|
|
|
if theme.busuanzi.site_uv || theme.busuanzi.site_pv || theme.busuanzi.page_pv
|
|
script(async data-pjax src= theme.asset.busuanzi || '//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js')
|
|
|
|
!= partial('includes/third-party/search/index', {}, { cache: true }) |