33 lines
804 B
Plaintext
33 lines
804 B
Plaintext
---
|
|
import Header from '../components/Header.astro'
|
|
import '../styles/global.css'
|
|
|
|
const { tytul, bezTla } = Astro.props
|
|
---
|
|
|
|
<!doctype html>
|
|
<html class="
|
|
m-0 w-svw h-svh
|
|
text-slate-950 bg-slate-200 select-none
|
|
" lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{tytul ? `${tytul} - Jakiś Fotograf` : 'Jakiś Fotograf'}</title>
|
|
</head>
|
|
<body style="animation: wsun 0.5s ease-in-out" class="flex flex-col p-2">
|
|
<Header />
|
|
<main class=`
|
|
grow
|
|
mx-auto p-4 rounded-md
|
|
w-368 max-w-full
|
|
${bezTla ? '' : 'bg-slate-100 drop-shadow-slate-300 drop-shadow-md'}
|
|
block
|
|
`>
|
|
<slot />
|
|
</main>
|
|
</body>
|
|
</html>
|