2024-04-23 15:16:51 +00:00
|
|
|
---
|
2024-04-23 21:25:10 +00:00
|
|
|
const { title } = Astro.props;
|
2024-04-23 15:16:51 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{title ?? "THP: Typed Hypertext Processor"}</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/css/global.css" />
|
2024-04-23 21:25:10 +00:00
|
|
|
<link rel="stylesheet" href="/css/pages.css" />
|
2024-04-23 15:16:51 +00:00
|
|
|
<link rel="stylesheet" href="/css/xcode-colors.css" />
|
|
|
|
|
2024-04-23 21:25:10 +00:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="https://unpkg.com/@phosphor-icons/web@2.1.1/src/bold/style.css"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
|
2024-04-23 15:16:51 +00:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800;900&family=Fira+Code&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="bg-c-bg text-c-text">
|
|
|
|
<slot />
|
|
|
|
</body>
|
|
|
|
</html>
|