mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 18:10:54 +08:00
20 lines
696 B
Plaintext
20 lines
696 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
|
|
|
|
const pageToc = page.toc === true || page.toc === false ? page.toc : theme.toc.enable
|
|
const showToc = is_post() && pageToc && (toc(page.content) !== '' || page.encrypt == true )
|
|
-
|
|
|
|
script#config_change
|
|
.
|
|
var GLOBAL_CONFIG_SITE = {
|
|
isPost: !{is_post()},
|
|
isHome: !{is_home()},
|
|
isHighlightShrink: !{isHighlightShrink},
|
|
isSidebar: !{showToc},
|
|
postUpdate: '!{full_date(page.updated)}'
|
|
}
|