18 lines
383 B
Plaintext
18 lines
383 B
Plaintext
---
|
|
import Navbar from '../components/Navbar.astro';
|
|
---
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Blog post</title>
|
|
</head>
|
|
<body class="flex flex-col items-center bg-polar-night-400">
|
|
<Navbar />
|
|
<div class="w-full max-w-4xl p-8 flex justify-center">
|
|
<div class="w-full prose prose-invert">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|