13 lines
354 B
Plaintext
13 lines
354 B
Plaintext
---
|
|
import DefaultLayout from "../layouts/DefaultLayout.astro";
|
|
import Nav from "../components/Nav.astro";
|
|
import Footer from "../components/Footer.astro";
|
|
import ArticleBody from "../components/article/ArticleBody.astro";
|
|
---
|
|
|
|
<DefaultLayout title="404">
|
|
<Nav />
|
|
<ArticleBody collectionName="site" articleSlug="404" />
|
|
<Footer />
|
|
</DefaultLayout>
|