zine/src/layouts/Layout.astro

34 lines
809 B
Text
Raw Normal View History

2024-01-15 20:29:22 +00:00
---
interface Props {
2024-01-24 21:43:51 +00:00
frontmatter: {
title: string;
description: string;
2024-01-24 21:43:51 +00:00
};
2024-01-15 20:29:22 +00:00
}
const { title, description } = Astro.props.frontmatter;
2024-01-24 21:43:51 +00:00
import Nav from '../components/nav.astro';
import '../styles/markdown.css';
2024-01-15 20:29:22 +00:00
---
<!doctype html>
<html lang="en">
2024-01-24 21:43:51 +00:00
<head>
<meta charset="UTF-8" />
<meta name="description" content={description} />
2024-01-24 21:43:51 +00:00
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
2024-01-26 01:56:51 +00:00
<title>exozine - {title}</title>
2024-01-24 21:43:51 +00:00
</head>
<body>
<Nav />
<div class="container mx-auto mb-10 px-10">
2024-01-30 20:02:47 +00:00
<div class="markdown text-lg max-w-2xl mx-auto">
2024-02-11 21:09:20 +00:00
<h1>{title}</h1>
2024-01-24 21:43:51 +00:00
<slot />
</div>
</div>
</body>
2024-01-15 20:29:22 +00:00
</html>