Very first version of pantosite-astro

This commit is contained in:
Anton Pogrebnjak
2024-12-27 22:05:12 +01:00
parent f82a00b1da
commit f83c6af99b
62 changed files with 1237 additions and 654 deletions

19
src/pages/500.astro Normal file
View File

@@ -0,0 +1,19 @@
---
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>