mirror of
https://github.com/KazooTTT/kazoottt-blog.git
synced 2025-06-22 18:21:33 +08:00
feat: hide desc
This commit is contained in:
@ -74,7 +74,7 @@ const paginationProps = {
|
||||
<section aria-label='Blog posts list'>
|
||||
<ul class='flex flex-col gap-y-4 text-start'>
|
||||
{page.data.map((p) => (
|
||||
<PostPreview post={p} withDesc />
|
||||
<PostPreview post={p} />
|
||||
))}
|
||||
</ul>
|
||||
<Pagination {...paginationProps} />
|
||||
|
@ -77,7 +77,7 @@ const paginationProps = {
|
||||
</h1>
|
||||
<section aria-label='Blog post list'>
|
||||
<ul class='flex flex-col gap-y-3 text-start'>
|
||||
{page.data.map((p) => <PostPreview as='h2' post={p} withDesc />)}
|
||||
{page.data.map((p) => <PostPreview as='h2' post={p} />)}
|
||||
</ul>
|
||||
<Pagination {...paginationProps} />
|
||||
</section>
|
||||
|
@ -75,7 +75,7 @@ const paginationProps = {
|
||||
</h1>
|
||||
<section aria-label='Blog post list'>
|
||||
<ul class='flex flex-col gap-y-3 text-start'>
|
||||
{page.data.map((p) => <PostPreview as='h2' post={p} withDesc />)}
|
||||
{page.data.map((p) => <PostPreview as='h2' post={p} />)}
|
||||
</ul>
|
||||
<Pagination {...paginationProps} />
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user