44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
---
|
|
import '../styles/global.css';
|
|
import Footer from '../components/astro/Footer.astro';
|
|
import SiteHeader from '../components/astro/SiteHeader.astro';
|
|
|
|
interface Props {
|
|
title?: string;
|
|
description?: string;
|
|
}
|
|
|
|
const {
|
|
title = 'trans-former.fr',
|
|
description = "Architecture d'ecologie politique - journal, carte conceptuelle, manifeste",
|
|
} = Astro.props;
|
|
---
|
|
<!doctype html>
|
|
<html lang="fr" class="h-screen">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
<meta name="description" content={description} />
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta property="og:type" content="website" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content={title} />
|
|
<meta name="twitter:description" content={description} />
|
|
</head>
|
|
<body class="m-0 bg-white text-neutral-900 antialiased h-screen flex flex-col overflow-hidden">
|
|
<div class="flex-shrink-0">
|
|
<SiteHeader />
|
|
</div>
|
|
<div class="flex-1 flex flex-col min-h-0 overflow-hidden">
|
|
<slot />
|
|
</div>
|
|
<div class="flex-shrink-0">
|
|
<Footer />
|
|
</div>
|
|
</body>
|
|
</html>
|