Files
folporio/src/layouts/Layout.astro

33 lines
804 B
Plaintext
Raw Normal View History

2025-11-25 09:37:22 +01:00
---
import Header from '../components/Header.astro'
import '../styles/global.css'
2025-12-08 20:48:40 +01:00
const { tytul, bezTla } = Astro.props
2025-11-25 09:37:22 +01:00
---
2025-11-24 10:31:49 +01:00
<!doctype html>
2025-11-25 09:37:22 +01:00
<html class="
m-0 w-svw h-svh
text-slate-950 bg-slate-200 select-none
" lang="pl">
2025-11-24 10:31:49 +01:00
<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} />
2025-12-08 20:48:40 +01:00
<title>{tytul ? `${tytul} - Jakiś Fotograf` : 'Jakiś Fotograf'}</title>
2025-11-24 10:31:49 +01:00
</head>
2025-12-08 20:48:40 +01:00
<body style="animation: wsun 0.5s ease-in-out" class="flex flex-col p-2">
2025-11-25 09:37:22 +01:00
<Header />
2025-12-08 20:48:40 +01:00
<main class=`
2025-11-25 09:37:22 +01:00
grow
2025-12-08 20:48:40 +01:00
mx-auto p-4 rounded-md
w-368 max-w-full
${bezTla ? '' : 'bg-slate-100 drop-shadow-slate-300 drop-shadow-md'}
2025-11-25 09:37:22 +01:00
block
2025-12-08 20:48:40 +01:00
`>
2025-11-25 09:37:22 +01:00
<slot />
</main>
2025-11-24 10:31:49 +01:00
</body>
</html>