hexo微调 奇偶卡牌样式差异

This commit is contained in:
tangly1024.com
2023-02-02 13:13:54 +08:00
parent 0178123e13
commit 797bb445c9
3 changed files with 24 additions and 23 deletions

View File

@@ -58,7 +58,7 @@ const BlogPostListScroll = ({ posts = [], currentSearch, showSummary = CONFIG_HE
{/* 文章列表 */}
<div className='flex flex-wrap space-y-1 lg:space-y-4 px-2'>
{postsToShow.map(post => (
<BlogPostCard key={post.id} post={post} showSummary={showSummary}/>
<BlogPostCard key={post.id} post={post} index={posts.indexOf(post)} showSummary={showSummary}/>
))}
</div>