Merge pull request #1639 from jerryc127/dev

This commit is contained in:
Jerry Wong
2025-01-28 18:59:06 +08:00
committed by GitHub
Unverified
4 changed files with 24 additions and 11 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
.addtoany
.a2a_kit.a2a_kit_size_32.a2a_default_style
- let addtoanyItem = theme.addtoany.item.split(',')
- let addtoanyItem = theme.share.addtoany.item.split(',')
each name in addtoanyItem
a(class="a2a_button_" + name)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "hexo-theme-butterfly",
"version": "5.3.1",
"version": "5.3.2",
"description": "A Simple and Card UI Design theme for Hexo",
"main": "package.json",
"scripts": {
+13 -3
View File
@@ -29,7 +29,6 @@ hexo.extend.generator.register('post', locals => {
previousIndexes.shift()
}
console.log(defaultCover[index])
return defaultCover[index]
}
@@ -64,9 +63,20 @@ hexo.extend.generator.register('post', locals => {
return data
}
return locals.posts.sort('date').map(post => ({
// https://github.com/hexojs/hexo/blob/master/lib%2Fplugins%2Fgenerator%2Fpost.ts
const posts = locals.posts.sort('date').toArray()
const { length } = posts
return posts.map((post, i) => {
if (i) post.prev = posts[i - 1]
if (i < length - 1) post.next = posts[i + 1]
post.__post = true
return {
data: handleImg(post),
layout: 'post',
path: post.path
}))
}
})
})
+6 -3
View File
@@ -12,11 +12,10 @@
width: 100% !important
.pagination-related
width: 50%
height: 150px
+maxWidth768()
width: 100%
+minWidth768()
flex: 1
.info-1
.info-item-2
@@ -31,6 +30,10 @@
margin-top: 40px
width: 100%
addBorderRadius()
display: flex
+maxWidth768()
flex-direction: column
.layout
.pagination