Files
halo-theme-WarmIsland/src/pages/post.astro
T
Ryan Wang ceceb37349 init project
Signed-off-by: Ryan Wang <i@ryanc.cc>
2022-07-28 22:53:51 +08:00

10 lines
200 B
Plaintext

---
import Layout from "../layouts/Layout.astro";
import PostCard from "../components/PostCard.vue"
---
<Layout title="Welcome to Post Page.">
<main>
<PostCard client:visible />
</main>
</Layout>