13 lines
404 B
Plaintext
13 lines
404 B
Plaintext
---
|
|
import DefaultLayout from "../layouts/DefaultLayout.astro";
|
|
import Nav from "../components/Nav.astro";
|
|
import Footer from "../components/Footer.astro";
|
|
import ArticleBodyWrapper from "../components/article/article_body/ArticleBodyWrapper.astro";
|
|
---
|
|
|
|
<DefaultLayout title="李守中">
|
|
<Nav />
|
|
<ArticleBodyWrapper collectionName="site" articleId="关于本站.md" />
|
|
<Footer />
|
|
</DefaultLayout>
|