36 lines
807 B
Plaintext
36 lines
807 B
Plaintext
---
|
|
// Layout.astro
|
|
import '../styles/styles.css';
|
|
import Header from './Header.astro';
|
|
import Sidebar from './Sidebar.astro';
|
|
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{title} - juchatz.com</title>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<Header />
|
|
<Sidebar />
|
|
<main>
|
|
<section class="main-content">
|
|
<slot />
|
|
</section>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|