mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-07-03 23:51:26 +00:00
18 lines
406 B
Text
18 lines
406 B
Text
|
|
---
|
||
|
|
import BaseLayout from "@/layouts/BaseLayout.astro";
|
||
|
|
import PostList from "@/components/Posts/PostList.astro";
|
||
|
|
import "@/styles/global.css";
|
||
|
|
|
||
|
|
export function getStaticPaths() {
|
||
|
|
return [{ params: { lang: "zh" } }, { params: { lang: "en" } }];
|
||
|
|
}
|
||
|
|
|
||
|
|
const { lang } = Astro.params;
|
||
|
|
const pageTitle = "Homepage";
|
||
|
|
---
|
||
|
|
|
||
|
|
<BaseLayout pageTitle={pageTitle}>
|
||
|
|
<h1>My Astro Site</h1>
|
||
|
|
<PostList />
|
||
|
|
</BaseLayout>
|