mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
2. Feature: add the option to change the site name font-family 3. Feature: add the option to close instant-page 4. Fix: Display null when the sutitle not set
89 lines
3.6 KiB
Plaintext
89 lines
3.6 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
|
||
//- - var top_img = page.top_img || theme.post_meta.top_img || theme.top_img || config.top_img || true
|
||
//- - var bg_img = top_img !== true ? `background-image: url(${top_img})` : ''
|
||
//- - var footer_bg_class= bg_img ? 'footer-bg' : ''
|
||
//- footer(style=bg_img class=footer_bg_class)
|
||
footer
|
||
include ./footer.pug
|
||
i.fa.fa-arrow-up#go-up(aria-hidden="true")
|
||
include ./rightside.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
|
||
|
||
|
||
|