mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 19:30:54 +08:00
feat: 點擊文字特效增加隨機配置 feat: 可配置是否添加css前綴 fix: 修復子目錄下,配置justifiedGallery CDN(相對鏈接)後,連接會無法訪問的bugs fix: 修復 pangu 配置post 後,仍在全站生效的bugs improvement: 夜間模式下,廣告降低亮度 improvement: 手機端toc邊距微調 improvement: html格式優化 improvement: 搜索優化 improvement: 刪除不必要的語言文件
13 lines
550 B
Plaintext
13 lines
550 B
Plaintext
if theme.aside.card_archives.enable
|
|
.card-widget.card-archives
|
|
.card-content
|
|
.item-headline
|
|
i.fas.fa-archive
|
|
span= _p('aside.card_archives')
|
|
|
|
- let type = theme.aside.card_archives.type || 'monthly'
|
|
- let format = theme.aside.card_archives.format || 'MMMM YYYY'
|
|
- let order = theme.aside.card_archives.order || -1
|
|
- let limit = theme.aside.card_archives.limit === 0 ? 0 : theme.aside.card_archives.limit || 8
|
|
!= aside_archives({ type:type, format: format, order: order, limit: limit })
|