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
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
- var hideAside = !theme.aside.enable || page.aside === false ? 'hide-aside' : ''
|
|
|
|
doctype html
|
|
html(lang=config.language data-theme=theme.display_mode)
|
|
head
|
|
include ./head.pug
|
|
body
|
|
if theme.fireworks && theme.fireworks.enable
|
|
canvas.fireworks
|
|
|
|
!=partial('includes/mobile-sidebar/index', {}, {cache:theme.fragment_cache})
|
|
|
|
include ./sidebar.pug
|
|
|
|
#body-wrap
|
|
if theme.background
|
|
- var is_photo = theme.background.substring(3,0) === 'url' ? 'photo':'color'
|
|
#web_bg(data-type=is_photo)
|
|
include ./header/index.pug
|
|
|
|
if (!is_post())
|
|
main#content-inner.layout_page(class=hideAside)
|
|
if body
|
|
div!= body
|
|
else
|
|
block content
|
|
include widget/index.pug
|
|
else
|
|
main#content-inner.layout_post
|
|
if body
|
|
div!= body
|
|
else
|
|
block content
|
|
|
|
- var footer_bg = theme.footer_bg == false ? '' : bg_img
|
|
- var is_bg = theme.footer_bg == false ? 'color' : 'photo'
|
|
footer#footer(style=footer_bg data-type=is_bg)
|
|
!=partial('includes/footer', {}, {cache:theme.fragment_cache})
|
|
|
|
include ./rightside.pug
|
|
!=partial('includes/search/index', {}, {cache:theme.fragment_cache})
|
|
include ./additional-js.pug |