31 lines
620 B
Text
31 lines
620 B
Text
---
|
|
import "../styles/global.css"
|
|
import Navbar from "../components/Navbar.astro"
|
|
|
|
const props = Astro.props
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg"/>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
<meta name="generator" content={Astro.generator}/>
|
|
<title>DIDAYS 2026{props.title ? ` | ${props.title}` : ""}</title>
|
|
</head>
|
|
<body>
|
|
<Navbar/>
|
|
<slot/>
|
|
</body>
|
|
</html>
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|