oliverdavies.uk/website/src/layouts/Layout.astro

77 lines
1.7 KiB
Plaintext
Raw Normal View History

2022-10-07 08:14:10 +00:00
---
import '../../assets/css/tailwind.pcss'
import Navbar from '../components/Navbar.astro'
export interface Props {
title: string;
}
const { title } = Astro.props;
interface Link {
title: string,
href: string,
}
const footerLinks = [
{
title: 'About',
href: '/',
},
{
title: 'Blog',
href: '/blog',
},
{
title: 'Talks',
href: '/talks',
},
{
title: 'Daily list',
href: '/daily',
},
{
title: 'Search',
href: '/search',
},
2022-10-07 08:14:10 +00:00
]
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300&display=swap" rel="stylesheet">
<title>{title}</title>
2022-10-10 20:07:51 +00:00
<script defer data-domain="oliverdavies.uk" src="https://plausible.io/js/plausible.js"></script>
2022-10-07 08:14:10 +00:00
</head>
<body>
2022-10-22 11:19:47 +00:00
<div class="min-h-screen font-sans text-base font-light text-grey-900 md:text-xl dark:text-white dark:bg-grey-900">
2022-10-07 08:14:10 +00:00
<Navbar />
<div class="py-10 px-4 mx-auto max-w-2xl md:py-10">
2022-10-22 11:24:10 +00:00
<h1 class="mb-4 text-xl font-bold md:text-2xl">{title}</h1>
2022-10-07 08:14:10 +00:00
2022-10-22 11:24:30 +00:00
<main>
2022-10-07 08:14:10 +00:00
<slot />
2022-10-22 11:24:30 +00:00
</main>
2022-10-07 08:14:10 +00:00
<div class="mt-16 mb-6">
<footer>
<nav class="flex flex-wrap justify-center -mb-3">
{footerLinks && footerLinks.map(link => (
2022-10-22 11:19:47 +00:00
<a class="mx-3 mb-3 text-sm md:text-lg dark:text-white hover:text-grey-900 link dark:hover:text-blue-400" href={link.href}>{link.title}</a>
2022-10-07 08:14:10 +00:00
))}
</nav>
</footer>
</div>
</div>
</div>
</body>
</html>