mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
💥 移除對文章隱藏的支持,如需要,請使用插件,hexo-hide-posts/hexo-generator-indexed 💥 移除subtitle金山詞霸每日一句,增加搏天api的隨機語錄 ✨ subtitle修改為網頁加載完後再加載,防止api回應過慢而阻礙網頁顯示 ✨ 適配valine 1.4.0, 刪除部分valine夜間模式代碼 ✨ meta增加article:published_time和article:modified_time ✨ 當沒有設置Description時,會自動讀取文章前200個文字作為meta Description ✨ sidebar menu 增加頭像轉圈hover 💄 調整aside和mobile sidebar 網頁資訊佈局,當缺少一個時,寬度依舊平分 🐛 調整子目錄的排版(向左對齊),修復只能點擊子目錄文字才能跳轉的bug 🔥 pug精簡 刪除recent-post.pug 改為引用mixins/post-ui.pug
72 lines
2.1 KiB
Plaintext
72 lines
2.1 KiB
Plaintext
script(src=url_for(theme.CDN.jquery))
|
|
script(src=url_for(theme.CDN.utils))
|
|
script(src=url_for(theme.CDN.main))
|
|
|
|
if theme.translate && theme.translate.enable
|
|
script(src=url_for(theme.CDN.translate))
|
|
|
|
if (theme.medium_zoom && theme.medium_zoom.enable)
|
|
script(src=url_for(theme.CDN.medium_zoom))
|
|
|
|
if (theme.fancybox && theme.fancybox.enable)
|
|
script(src=url_for(theme.CDN.fancybox))
|
|
|
|
include ./math/index.pug
|
|
|
|
if theme.fireworks && theme.fireworks.enable
|
|
script(src=url_for(theme.CDN.anime))
|
|
script(src=url_for(theme.CDN.fireworks))
|
|
|
|
if (theme.snackbar && theme.snackbar.enable)
|
|
script(src=url_for(theme.CDN.snackbar))
|
|
|
|
if (theme.canvas_ribbon && theme.canvas_ribbon.enable)
|
|
include ./third-party/canvas-ribbon.pug
|
|
|
|
if (theme.canvas_ribbon_piao && theme.canvas_ribbon_piao.enable)
|
|
include ./third-party/canvas-ribbon-piao.pug
|
|
|
|
if (theme.canvas_nest && theme.canvas_nest.enable)
|
|
include ./third-party/canvas-nest.pug
|
|
|
|
if theme.activate_power_mode.enable
|
|
script(src=url_for(theme.CDN.activate_power_mode))
|
|
script.
|
|
POWERMODE.colorful = #{theme.activate_power_mode.colorful};
|
|
POWERMODE.shake = #{theme.activate_power_mode.shake};
|
|
document.body.addEventListener('input', POWERMODE);
|
|
|
|
if theme.busuanzi.site_uv || theme.busuanzi.site_pv || theme.busuanzi.page_pv
|
|
script(async src=url_for(theme.CDN.busuanzi))
|
|
|
|
if theme.instantpage.enable
|
|
script(src=url_for(theme.CDN.instantpage) type="module")
|
|
|
|
if theme.lazyload.enable
|
|
script(src=url_for(theme.CDN.lazyload) async="")
|
|
|
|
//- 鼠標特效
|
|
if theme.click_heart && theme.click_heart.enable
|
|
script(src=url_for(theme.CDN.click_heart))
|
|
|
|
if theme.ClickShowText && theme.ClickShowText.enable
|
|
script(src=url_for(theme.CDN.ClickShowText))
|
|
|
|
if theme.pangu && theme.pangu.enable
|
|
include ./third-party/pangu.pug
|
|
|
|
//- search
|
|
if theme.algolia_search && theme.algolia_search.enable
|
|
script(src=url_for(theme.CDN.algolia_js))
|
|
else if theme.local_search && theme.local_search.enable
|
|
script(src=url_for(theme.CDN.local_search))
|
|
|
|
//- mermaid
|
|
if theme.mermaid.enable
|
|
include ./math/mermaid.pug
|
|
|
|
if is_home()
|
|
include ./head/subtitle.pug
|
|
|
|
!=fragment_cache('injectBottom', function(){return injectHtml(theme.inject.bottom)})
|