mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
2. Feature: 增加頁面排版,可選擇把右邊欄放在左邊 3. Feature: 增加 Note (Bootstrap Callout) (移植於next主題) 4. Feature: 手機上能夠查看TOC 5. Feature: 增加直達評論按鈕 6. Fix: 修復post頁在寬度1024px下的顯示bug 7. Fix: 修復代碼框部分語言沒有顯示正確的代碼語言 8. Fix: 修復設置裏把Disqus註釋掉無法運行的bug
87 lines
3.4 KiB
Plaintext
87 lines
3.4 KiB
Plaintext
|
||
- var pageTitle = page.title || config.subtitle || ''
|
||
- if (is_archive()) pageTitle = _p('page.archives')
|
||
- if (is_tag()) pageTitle = _p('page.tag') + ': ' + page.tag
|
||
- if (is_category()) pageTitle = _p('page.category') + ': ' + page.category
|
||
- if (is_month()) pageTitle += ': ' + page.month + '/' + page.year
|
||
- if (is_year()) pageTitle += ': ' + page.year
|
||
- var pageTitle_saved //- 暫時存儲pageTitle
|
||
- var pageTitle_no_include_blog_name //- 存儲pageTitle, 不帶 " | ",meta用
|
||
- var home_subtitle_true //有subtitle
|
||
//- home時顯示config.title (JerryC),其他顯示 pageTitle。meta用
|
||
- is_home() ? pageTitle_no_include_blog_name = config.title : pageTitle_no_include_blog_name = pageTitle
|
||
//- 暫時存儲pageTitle
|
||
- pageTitle ? pageTitle_saved = pageTitle + ' | ' + config.title : pageTitle_saved = config.title
|
||
//- 是否有 config.subtitle 是各自显示
|
||
- config.subtitle ? home_subtitle_true = ' - ' + config.subtitle : home_subtitle_true = ''
|
||
//- home時pageTitle顯示 JerryC - subtitle,其他顯示 pageTitle | JerryC
|
||
- is_home() ? pageTitle = config.title + home_subtitle_true : pageTitle = pageTitle_saved
|
||
|
||
- var pageDescription = page.description || page.title || config.description || ''
|
||
- var pageKeywords = (config.keywords || []).join(',')
|
||
- if (page.tags && page.tags.data) pageKeywords = page.tags.data.map(function(tag) {return tag.name;}).join(',')
|
||
- var pageAuthor = config.email ? config.author + ',' + config.email : config.author
|
||
- var pageCopyright = config.copyright || config.author
|
||
|
||
doctype html
|
||
html(lang=config.language)
|
||
head
|
||
meta(charset='UTF-8')
|
||
meta(http-equiv="X-UA-Compatible" content="IE=edge")
|
||
meta(name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1")
|
||
title= pageTitle
|
||
meta(name="description" content=pageDescription)
|
||
meta(name="keywords" content=pageKeywords)
|
||
meta(name="author" content=pageAuthor)
|
||
meta(name="copyright" content=pageCopyright)
|
||
meta(name ="format-detection" content="telephone=no")
|
||
!=favicon_tag(config.favicon || theme.favicon || '/favicon.ico')
|
||
if theme.stylesheets !== undefined && theme.stylesheets.length > 0
|
||
each url in theme.stylesheets
|
||
link(rel='stylesheet', href=url_for(url))
|
||
each item in theme.cdn.css
|
||
if item !== undefined
|
||
link(rel='stylesheet', href=item)
|
||
include ./head.pug
|
||
include ./config.pug
|
||
body
|
||
if theme.fireworks && theme.fireworks.enable
|
||
canvas.fireworks
|
||
if (is_post() && page.toc != false && theme.toc.enable)
|
||
i.fa.fa-arrow-right#toggle-sidebar(aria-hidden="true")
|
||
include ./sidebar.pug
|
||
if (!is_post())
|
||
include ./nav.pug
|
||
#content-outer
|
||
block top_img
|
||
if (!is_post())
|
||
#content-inner.layout_page
|
||
if body
|
||
div!= body
|
||
else
|
||
block content
|
||
else
|
||
#content-inner.layout.layout_post
|
||
if body
|
||
div!= body
|
||
else
|
||
block content
|
||
footer
|
||
include ./footer.pug
|
||
i.fa.fa-arrow-up#go-up(aria-hidden="true")
|
||
include ./rightside.pug
|
||
if (is_post())
|
||
include ./post-bottom.pug
|
||
each item in theme.cdn.js
|
||
if item !== undefined
|
||
script(src=url_for(item))
|
||
if theme.scripts !== undefined && theme.scripts.length > 0
|
||
//- scripts list from config.yml
|
||
each url in theme.scripts
|
||
script(src=url_for(url))
|
||
include ./additional-js.pug
|
||
include ./search/index.pug
|
||
|
||
|
||
|