50 lines
995 B
Plaintext
50 lines
995 B
Plaintext
---
|
|
import "../styles/index.css";
|
|
import "@fontsource/source-serif-4/latin.css";
|
|
import "@fontsource/source-serif-4/latin-italic.css";
|
|
|
|
type Props = {
|
|
title?: string;
|
|
className?: string;
|
|
};
|
|
|
|
const { title, className } = Astro.props;
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
<link rel="icon" href="/favicon.ico?v=2" />
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="/favicon-16x16.png?v=2"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="/favicon-32x32.png?v=2"
|
|
/>
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="/apple-touch-icon.png?v=2"
|
|
/>
|
|
|
|
<script
|
|
is:inline
|
|
defer
|
|
src="https://stat.lua.re/re.js"
|
|
data-website-id="7d601566-3611-444c-800f-d351e266c02d"></script>
|
|
|
|
<title>{title ?? "lua.re"}</title>
|
|
</head>
|
|
<body class={className}>
|
|
<slot />
|
|
</body>
|
|
</html>
|