28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
---
|
|
import "@fontsource-variable/noto-sans";
|
|
import "@fontsource-variable/noto-serif";
|
|
import "../styles/base.css";
|
|
import Scripts from "../components/Scripts.astro";
|
|
const { pageTitle } = Astro.props;
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<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="manifest" href="/site.webmanifest" />
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#37b340" />
|
|
<meta name="msapplication-TileColor" content="#37b340" />
|
|
<meta name="theme-color" content="#ffffff" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{pageTitle || "Gallery"} | Bad Manners</title>
|
|
<link rel="alternate" type="application/rss+xml" title="Gallery | Bad Manners" href={`${Astro.site}feed.xml`} />
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
<Scripts />
|
|
</body>
|
|
</html>
|