generated from bisco/codex-bootstrap
27 lines
585 B
Plaintext
27 lines
585 B
Plaintext
---
|
|
import "../styles/global.css";
|
|
|
|
interface Props {
|
|
title: string;
|
|
description: string;
|
|
}
|
|
|
|
const { title, description } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="description" content={description} />
|
|
<meta name="theme-color" content="#F3EBDD" />
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<a class="skip-link" href="#contenuto">Vai al contenuto</a>
|
|
<slot />
|
|
</body>
|
|
</html>
|