mirror of
https://github.com/Pantonius/pantosite-astro.git
synced 2026-04-26 09:24:38 +00:00
19 lines
425 B
Plaintext
19 lines
425 B
Plaintext
|
|
---
|
||
|
|
import BaseHead from "../components/BaseHead.astro";
|
||
|
|
import Footer from "../components/Footer.astro";
|
||
|
|
import Header from "../components/Header.astro";
|
||
|
|
---
|
||
|
|
|
||
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<BaseHead title="500 - Internal Server Error" description="Something didn't go according to plan" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<Header />
|
||
|
|
<main>
|
||
|
|
<h1>500 - Internal Server Error</h1>
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
</body>
|
||
|
|
</html>
|