mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
feat: 主頁文章時間和文章頁文章時間可以配置顯示日期還是相對時間 feat: top_img 可配置 [留空(默認色)/顏色/漸變色/圖片鏈接/ false(不顯示top_img)] feat: footer可配置背景 [留空/false(默認色)/顏色/漸變色/圖片鏈接/true(跟top_img一樣)] improvement: preloader 在 pjax 下 每個頁面都會加載 improvement: 修改判斷,避免用户設置2個lightbox 而導致報錯(只能設置一個) improvement: 精確時間顯示 (剛剛/幾分鐘前/幾小時前/幾天前/幾個月前) improvement: 刪除不必要的語言文件和css chore: update hexo-renderer-stylus to 2.0.1
86 lines
3.3 KiB
Plaintext
86 lines
3.3 KiB
Plaintext
- var pageTitle
|
||
- if (is_archive()) pageTitle = _p('page.archives')
|
||
- else if (is_tag()) pageTitle = _p('page.tag') + ': ' + page.tag
|
||
- else if (is_category()) pageTitle = _p('page.category') + ': ' + page.category
|
||
- else if (is_month()) pageTitle += ': ' + page.month + '/' + page.year
|
||
- else if (is_year()) pageTitle += ': ' + page.year
|
||
- else if (is_current('/404.html', [strict])) pageTitle = _p('error404.error_title')
|
||
- else pageTitle = page.title || config.title || ''
|
||
|
||
- var isSubtitle = config.subtitle ? ' - ' + config.subtitle : ''
|
||
- var tabTitle = is_home() || !pageTitle ? config.title + isSubtitle : pageTitle + ' | ' + config.title
|
||
|
||
- var pageKeywords
|
||
- if (page.keywords) pageKeywords = Array.isArray(page.keywords) ? (page.keywords).join(',') : ([]).join(',') || page.keywords
|
||
- else if (page.tags && page.tags.length) pageKeywords = page.tags.data.map(function(tag) {return tag.name;}).join(',')
|
||
- else pageKeywords = Array.isArray(config.keywords) ? (config.keywords).join(','): ([]).join(',') || config.keywords
|
||
- var pageAuthor = config.email ? config.author + ',' + config.email : config.author
|
||
- var pageCopyright = config.copyright || config.author
|
||
- var themeColor = theme.display_mode === 'dark' ? '#0d0d0d' : '#ffffff'
|
||
|
||
meta(charset='UTF-8')
|
||
meta(http-equiv="X-UA-Compatible" content="IE=edge")
|
||
meta(name="viewport" content="width=device-width,initial-scale=1")
|
||
title= tabTitle
|
||
if pageKeywords
|
||
meta(name="keywords" content=pageKeywords)
|
||
meta(name="author" content=pageAuthor)
|
||
meta(name="copyright" content=pageCopyright)
|
||
meta(name ="format-detection" content="telephone=no")
|
||
meta(name="theme-color" content=themeColor)
|
||
|
||
if theme.disable_baidu_transformation
|
||
meta(http-equiv="Cache-Control" content="no-transform")
|
||
meta(http-equiv="Cache-Control" content="no-siteapp")
|
||
|
||
//- Open_Graph
|
||
include ./head/Open_Graph.pug
|
||
|
||
!=favicon_tag(theme.favicon || config.favicon)
|
||
link(rel="canonical" href=urlNoIndex())
|
||
|
||
//- 預解析
|
||
!=partial('includes/head/preconnect', {}, {cache:theme.fragment_cache})
|
||
|
||
//- 網站驗證
|
||
!=partial('includes/head/site_verification', {}, {cache:theme.fragment_cache})
|
||
|
||
//- PWA
|
||
if (theme.pwa && theme.pwa.enable)
|
||
!=partial('includes/head/pwa', {}, {cache:theme.fragment_cache})
|
||
|
||
//- main css
|
||
link(rel='stylesheet', href=url_for(theme.CDN.main_css))
|
||
link(rel='stylesheet', href=url_for(theme.CDN.fontawesome))
|
||
|
||
if theme.fancybox
|
||
link(rel='stylesheet', href=url_for(theme.CDN.fancybox_css))
|
||
|
||
if (theme.snackbar && theme.snackbar.enable)
|
||
link(rel='stylesheet', href=url_for(theme.CDN.snackbar_css))
|
||
|
||
if theme.algolia_search.enable
|
||
link(rel='stylesheet' href=url_for(theme.CDN.algolia_search_css))
|
||
script(src=url_for(theme.CDN.algolia_search) defer)
|
||
|
||
//- google_adsense
|
||
!=partial('includes/head/google_adsense', {}, {cache:theme.fragment_cache})
|
||
|
||
//- analytics
|
||
!=partial('includes/head/analytics', {}, {cache:theme.fragment_cache})
|
||
|
||
//- font
|
||
if theme.blog_title_font && theme.blog_title_font.font_link
|
||
link(rel='stylesheet' href=url_for(theme.blog_title_font.font_link))
|
||
|
||
//- global config
|
||
!=partial('includes/head/config', {}, {cache:theme.fragment_cache})
|
||
|
||
include ./head/config_site.pug
|
||
include ./head/noscript.pug
|
||
|
||
!=partial('includes/head/darkmode', {}, {cache:theme.fragment_cache})
|
||
|
||
!=fragment_cache('injectHead', function(){return injectHtml(theme.inject.head)})
|
||
|