mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
fix: 修復 typeJSFn 重複賦值的 bug fix: 修復固定狀態欄後,標題有陰影的 bug fix: 修復 gallery 標籤將圖片鏈接截斷導致404無法加載圖片的 bug closed #1160 fix: 修復開啟導航欄固定後,點擊部分滾動向上的按鈕,滾動的目標部分被導航欄遮擋的 bug closed #1158 fix: 修復固定導航欄後,toc 被遮擋的 closed #1159 fix: 切換簡繁時,會改變 html 的 lang 屬性
52 lines
2.1 KiB
Plaintext
52 lines
2.1 KiB
Plaintext
if !theme.disable_top_img && page.top_img !== false
|
|
if is_post()
|
|
- var top_img = page.top_img || page.cover || theme.default_top_img
|
|
else if is_page()
|
|
- var top_img = page.top_img || theme.default_top_img
|
|
else if is_tag()
|
|
- var top_img = theme.tag_per_img && theme.tag_per_img[page.tag]
|
|
- top_img = top_img ? top_img : (theme.tag_img !== false ? theme.tag_img || theme.default_top_img : false)
|
|
else if is_category()
|
|
- var top_img = theme.category_per_img && theme.category_per_img[page.category]
|
|
- top_img = top_img ? top_img : (theme.category_img !== false ? theme.category_img || theme.default_top_img : false)
|
|
else if is_home()
|
|
- var top_img = theme.index_img !== false ? theme.index_img || theme.default_top_img : false
|
|
else if is_archive()
|
|
- var top_img = theme.archive_img !== false ? theme.archive_img || theme.default_top_img : false
|
|
else
|
|
- var top_img = page.top_img || theme.default_top_img
|
|
|
|
if top_img !== false
|
|
- var imgSource = top_img && isImgOrUrl(top_img) ? `background-image: url('${url_for(top_img)}')` : `background: ${top_img}`
|
|
- var bg_img = top_img ? imgSource : ''
|
|
- var site_title = page.title || page.tag || page.category || config.title
|
|
- var isHomeClass = is_home() ? 'full_page' : 'not-home-page'
|
|
- is_post() ? isHomeClass = 'post-bg' : isHomeClass
|
|
else
|
|
- var isHomeClass = 'not-top-img'
|
|
else
|
|
- var top_img = false
|
|
- var isHomeClass = 'not-top-img'
|
|
|
|
- const isFixedClass = theme.nav.fixed ? ' fixed' : ''
|
|
|
|
header#page-header(class=`${isHomeClass+isFixedClass}` style=bg_img)
|
|
!=partial('includes/header/nav', {}, {cache: true})
|
|
if top_img !== false
|
|
if is_post()
|
|
include ./post-info.pug
|
|
else if is_home()
|
|
#site-info
|
|
h1#site-title=site_title
|
|
if theme.subtitle.enable
|
|
- var loadSubJs = true
|
|
#site-subtitle
|
|
span#subtitle
|
|
if(theme.social)
|
|
#site_social_icons
|
|
!=fragment_cache('social', function(){return partial('includes/header/social')})
|
|
#scroll-down
|
|
i.fas.fa-angle-down.scroll-down-effects
|
|
else
|
|
#page-site-info
|
|
h1#site-title=site_title |