mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 22:17:06 +08:00
fix: 修復在 chrome上,進入頁面時,頁面元素會出現模糊到清晰的bug close #479 fix: 修復 文章頁面上滑子菜單圖標文字無法顯示的 bug close #481 improvement: meta description 限制在150字以內 close #480 improvement: pug優化和結構調整
20 lines
708 B
Plaintext
20 lines
708 B
Plaintext
-
|
|
let isHighlightShrink
|
|
if (theme.highlight_shrink == 'none') isHighlightShrink = 'undefined'
|
|
else if (page.highlight_shrink === true || page.highlight_shrink === false) isHighlightShrink = page.highlight_shrink
|
|
else isHighlightShrink = theme.highlight_shrink
|
|
|
|
var pageToc = page.toc === true || page.toc === false ? page.toc : theme.toc.enable
|
|
var showToc = is_post() && theme.aside.enable && pageToc && (toc(page.content) !== '' || page.encrypt == true )
|
|
-
|
|
|
|
script#config-diff
|
|
.
|
|
var GLOBAL_CONFIG_SITE = {
|
|
isPost: !{is_post()},
|
|
isHome: !{is_home()},
|
|
isHighlightShrink: !{isHighlightShrink},
|
|
isToc: !{showToc},
|
|
postUpdate: '!{full_date(page.updated)}'
|
|
}
|