32 lines
1007 B
Plaintext
32 lines
1007 B
Plaintext
|
---
|
||
|
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 ?? "THP: Typed Hypertext Processor"}</title>
|
||
|
|
||
|
<link rel="stylesheet" href="/css/global.css" />
|
||
|
<link rel="stylesheet" href="/css/pages.css">
|
||
|
<link rel="stylesheet" href="/css/xcode-colors.css" />
|
||
|
|
||
|
<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>
|