36 lines
882 B
Text
36 lines
882 B
Text
---
|
|
import "../styles/global.css";
|
|
import type { MarkdownLayoutProps } from 'astro';
|
|
import { Font } from "astro:assets";
|
|
|
|
type Props = MarkdownLayoutProps<{
|
|
title: string;
|
|
}>;
|
|
|
|
const { frontmatter } = Astro.props;
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{ frontmatter.title }</title>
|
|
<Font cssVariable="--font-archivo" preload />
|
|
<Font cssVariable="--font-nimbus-sans-l" preload />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<slot/>
|
|
</main>
|
|
<footer>
|
|
<nav>
|
|
<li><a href="/">Ankündigung der Kundgebung</a></li>
|
|
<li><a href="/legal/">Impressum & Rechtliches</a></li>
|
|
</nav>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|