mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-10 21:17:07 +08:00
feat: 可配置最新評論的緩存時間 fix: 修復pjax下不會跳轉404頁面的bug fix: 修復手持設備橫向翻轉時,menu 沒有進行判斷,而導致樣式錯亂的bug fix: 修復文字點擊關閉random無效的bug fix: 修復子目錄下,打賞圖片跳轉鏈接會錯誤的bug improvement: 文章版權右上角改為 版權icon improvement: pangu的操作範圍增大到 body-wrap裏的內容 improvement: pug 判斷優化 improvement: 最新評論js優化 remove: 移除 fragment_cache 配置(默認開啟) remove: 移除百度推送(百度已棄用)和百度轉碼
41 lines
1.8 KiB
Plaintext
41 lines
1.8 KiB
Plaintext
-
|
|
var options = {
|
|
prev_text: '<i class="fas fa-chevron-left fa-fw"></i>',
|
|
next_text: '<i class="fas fa-chevron-right fa-fw"></i>',
|
|
mid_size: 1,
|
|
escape: false
|
|
}
|
|
|
|
if(!is_post())
|
|
nav#pagination
|
|
div.pagination
|
|
!=paginator(options)
|
|
else
|
|
- let prev = theme.post_pagination === 1 ? page.prev : page.next
|
|
- let next = theme.post_pagination === 1 ? page.next : page.prev
|
|
nav#pagination.pagination-post
|
|
if(prev)
|
|
- var hasPageNext = next ? 'pull-left' : 'pull-full'
|
|
.prev-post(class=hasPageNext)
|
|
- var pagination_cover = prev.cover === false ? prev.randomcover : prev.cover
|
|
a(href=url_for(prev.path))
|
|
if theme.lazyload.enable
|
|
img.prev-cover(data-lazy-src=url_for(pagination_cover) onerror=`onerror=null;src='${url_for(theme.error_img.post_page)}'` alt='cover of previous post')
|
|
else
|
|
img.prev-cover(src=url_for(pagination_cover) onerror=`onerror=null;src='${url_for(theme.error_img.post_page)}'` alt='cover of previous post')
|
|
.pagination-info
|
|
.label=_p('pagination.prev')
|
|
.prev_info=prev.title
|
|
|
|
if(next)
|
|
- var hasPagePrev = prev ? 'pull-right' : 'pull-full'
|
|
- var pagination_cover = next.cover == false ? next.randomcover : next.cover
|
|
.next-post(class=hasPagePrev)
|
|
a(href=url_for(next.path))
|
|
if theme.lazyload.enable
|
|
img.next-cover(data-lazy-src=url_for(pagination_cover) onerror=`onerror=null;src='${url_for(theme.error_img.post_page)}'` alt='cover of next post')
|
|
else
|
|
img.next-cover(src=url_for(pagination_cover) onerror=`onerror=null;src='${url_for(theme.error_img.post_page)}'` alt='cover of next post')
|
|
.pagination-info
|
|
.label=_p('pagination.next')
|
|
.next_info=next.title |