Migrate to limax for slugify (CKJ languages bug)

This commit is contained in:
prototypa
2022-08-31 14:02:57 -04:00
parent 7deb304087
commit 3012b47991
7 changed files with 20 additions and 22 deletions

View File

@ -1,12 +1,12 @@
---
import BlogListItem from "~/components/widgets/BlogListItem.astro";
const { page } = Astro.props;
const { posts } = Astro.props;
---
<ul>
{
page.data.map((post) => (
posts.map((post) => (
<li class="mb-10 md:mb-16">
<BlogListItem post={post} />
</li>