blog/src/pages/index.astro

13 lines
214 B
Plaintext
Raw Normal View History

2023-08-31 00:30:45 +00:00
---
2023-08-31 03:47:22 +00:00
import PostList from "../components/PostList.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
2023-08-31 00:30:45 +00:00
---
2023-08-31 03:47:22 +00:00
<BaseLayout>
<h2>Blog</h2>
<!-- {JSON.stringify(allPosts)} -->
<PostList />
</BaseLayout>