mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 20:30:53 +08:00
Add the option to close the sidebar autopen
Fix the code font-size Add the post view fix runtimeshow bugs
This commit is contained in:
@@ -108,14 +108,19 @@
|
||||
.webinfo_item
|
||||
.webinfo_article_name= _p('aside.card_webinfo.article_name') + " :"
|
||||
.webinfo_article_count= site.posts.length
|
||||
.webinfo_item
|
||||
.webinfo_runtime_name= _p('aside.card_webinfo.runtime_name') + " :"
|
||||
#webinfo_runtime_count.webinfo_runtime_count
|
||||
script(src=url_for('js/runtimeshow.js'))
|
||||
.webinfo_item
|
||||
.webinfo_site_uv_name= _p('aside.card_webinfo.site_uv_name') + " :"
|
||||
.webinfo_site_uv_count#busuanzi_value_site_uv
|
||||
.webinfo_item
|
||||
.webinfo_site_name= _p('aside.card_webinfo.site_pv_name') + " :"
|
||||
.webinfo_site_pv_count#busuanzi_value_site_pv
|
||||
|
||||
if theme.runtimeshow.enable
|
||||
.webinfo_item
|
||||
.webinfo_runtime_name= _p('aside.card_webinfo.runtime_name') + " :"
|
||||
#webinfo_runtime_count.webinfo_runtime_count
|
||||
script#runtionshow(src=url_for('js/runtimeshow.js') start_date=theme.runtimeshow.start_date)
|
||||
|
||||
if theme.busuanzi.site_uv
|
||||
.webinfo_item
|
||||
.webinfo_site_uv_name= _p('aside.card_webinfo.site_uv_name') + " :"
|
||||
.webinfo_site_uv_count#busuanzi_value_site_uv
|
||||
if theme.busuanzi.site_pv
|
||||
.webinfo_item
|
||||
.webinfo_site_name= _p('aside.card_webinfo.site_pv_name') + " :"
|
||||
.webinfo_site_pv_count#busuanzi_value_site_pv
|
||||
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
.busuanzi
|
||||
script(async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js")
|
||||
if(!is_post())
|
||||
if(theme.busuanzi.site_uv)
|
||||
span#busuanzi_container_site_uv!= theme.busuanzi.site_uv_header
|
||||
span#busuanzi_value_site_uv
|
||||
span!=theme.busuanzi.site_uv_footer
|
||||
if(theme.busuanzi.site_pv)
|
||||
if(theme.busuanzi.site_pv)
|
||||
span.footer-separator |
|
||||
span#busuanzi_container_site_pv!= theme.busuanzi.site_pv_header
|
||||
span#busuanzi_value_site_pv
|
||||
span!=theme.busuanzi.site_pv_footer
|
||||
else
|
||||
if(theme.busuanzi.page_pv)
|
||||
span#busuanzi_container_page_pv!= theme.busuanzi.page_pv_header
|
||||
span#busuanzi_value_page_pv
|
||||
span!=theme.busuanzi.page_pv_footer
|
||||
else
|
||||
if(theme.busuanzi.site_uv)
|
||||
span#busuanzi_container_site_uv!= theme.busuanzi.site_uv_header
|
||||
span#busuanzi_value_site_uv
|
||||
span!=theme.busuanzi.site_uv_footer
|
||||
if(theme.busuanzi.site_pv)
|
||||
if(theme.busuanzi.site_pv)
|
||||
span.footer-separator |
|
||||
span#busuanzi_container_site_pv!= theme.busuanzi.site_pv_header
|
||||
span#busuanzi_value_site_pv
|
||||
span!=theme.busuanzi.site_pv_footer
|
||||
@@ -12,16 +12,11 @@
|
||||
span Hexo
|
||||
span.footer-separator |
|
||||
span= _p('footer.theme') + ' '
|
||||
a(href='https://github.com/Molunerfinn/hexo-theme-melody')
|
||||
span Melody
|
||||
//- if theme.runtimeshow.enable
|
||||
//- script(src=url_for('js/runtimeshow.js'))
|
||||
//- div#span_dt_dt
|
||||
a(href='https://github.com/jerryc127/hexo-theme-butterfly')
|
||||
span Butterfly
|
||||
if theme.footer_custom_text
|
||||
.footer_custom_text!=`${theme.footer_custom_text}`
|
||||
if theme.ICP.enable
|
||||
.icp
|
||||
a(href=theme.ICP.url)
|
||||
span=theme.ICP.text
|
||||
//- if theme.busuanzi.enable
|
||||
//- include ./count/busuanzi.pug
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#page-header
|
||||
span.pull-left
|
||||
a#site-name(href=url_for('/')) #[=config.title]
|
||||
a#site-name.blog_title(href=url_for('/')) #[=config.title]
|
||||
//- i.fa.fa-bars.toggle-menu.pull-right(aria-hidden="true")
|
||||
.open.toggle-menu.pull-right
|
||||
.menu-icon-first
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
#sidebar
|
||||
|
||||
- var sidebar_class = theme.auto_open_sidebar.enable === true ? 'auto_open' : ''
|
||||
|
||||
#sidebar(class=sidebar_class)
|
||||
- const showToc = is_post() && page.toc != false && theme.toc.enable
|
||||
-
|
||||
let tocNumber
|
||||
|
||||
Reference in New Issue
Block a user