2023-06-27 03:11:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>THP: Typed Hypertext Processor</title>
|
|
|
|
|
|
|
|
<!-- Tailwind output -->
|
|
|
|
<link href="/css/out.css" rel="stylesheet">
|
|
|
|
|
|
|
|
<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>
|
2023-07-01 01:00:17 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;500;600;700;800;900&family=Fugaz+One&family=Inconsolata&family=Inter&display=swap" rel="stylesheet">
|
2023-09-15 03:15:35 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Josefin+Sans:ital,wght@0,400;1,700&display=swap" rel="stylesheet">
|
|
|
|
|
|
|
|
<style>
|
|
|
|
html {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
</style>
|
2023-06-27 03:11:02 +00:00
|
|
|
</head>
|
|
|
|
<body class="bg-c-bg text-c-text">
|
2023-09-15 03:15:35 +00:00
|
|
|
<div class="grid grid-cols-[10rem_12rem_auto] gap-2 max-w-[70rem] mx-auto">
|
2023-07-01 01:55:29 +00:00
|
|
|
<div class="p-2 overflow-x-scroll max-h-screen sticky top-0">
|
2023-06-27 03:11:02 +00:00
|
|
|
<div class="relative mb-2 button-effect">
|
2023-07-01 01:55:29 +00:00
|
|
|
<a class="button-effect-receiver inline-block w-[9rem] p-4 bg-c-primary rounded-md"
|
2023-06-27 03:11:02 +00:00
|
|
|
href="/"
|
|
|
|
>
|
|
|
|
<h1
|
2023-09-15 03:15:35 +00:00
|
|
|
class="py-8 font-display text-6xl text-center font-bold italic"
|
2023-06-27 03:11:02 +00:00
|
|
|
style="text-shadow: 3px 3px 0 var(--c-bg)"
|
|
|
|
>
|
|
|
|
thp
|
|
|
|
</h1>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="w-full h-full bg-c-text absolute top-0 left-0 -z-10 rounded-md"></div>
|
|
|
|
</div>
|
|
|
|
|
2023-09-15 03:15:35 +00:00
|
|
|
<nav class="rounded-md p-4 border-2 border-[#F5A9B8]">
|
2023-06-27 03:11:02 +00:00
|
|
|
{{pages}}
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
2023-07-01 01:55:29 +00:00
|
|
|
<div class="py-2 max-h-screen overflow-x-scroll sticky top-0">
|
2023-09-15 03:15:35 +00:00
|
|
|
<nav class="rounded-md p-4 border-2 border-[#5BCEFA]">
|
2023-07-01 01:55:29 +00:00
|
|
|
<h2 class="text-2xl">On this page</h2>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
{{sidebar}}
|
|
|
|
</nav>
|
|
|
|
</div>
|
2023-09-15 03:15:35 +00:00
|
|
|
|
2023-06-27 03:11:02 +00:00
|
|
|
<main class="markdown p-4 my-2">
|
|
|
|
{{markdown}}
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|