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