zine/src/layouts/Layout.astro
CloudyyUw 892e4f6b0d
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/deployment/woodpecker Pipeline was successful
Removing Astro description in meta description
2024-02-14 18:22:18 -03:00

34 lines
809 B
Text

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