thp-web/static/template.html

59 lines
2.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2023-10-05 12:56:34 +00:00
<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-10-05 12:56:34 +00:00
<link
2024-02-20 10:17:21 +00:00
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800;900&display=swap"
2023-10-05 12:56:34 +00:00
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Josefin+Sans:ital,wght@0,400;1,700&display=swap"
rel="stylesheet">
</head>
2023-10-05 12:56:34 +00:00
<body class="bg-c-bg text-c-text">
2024-01-14 00:08:57 +00:00
<nav class="fixed w-screen top-0 h-12 border-b border-[rgba(150,150,150,0.25)] bg-c-nav-bg backdrop-blur-md z-20">
<div class="container mx-auto h-full w-full flex items-center">
<a href="/" class="font-display font-bold italic text-2xl">
2023-10-05 12:56:34 +00:00
<span class="text-[#F5A9B8]">t</span><span>h</span><span class="text-[#5BCEFA]">p</span>
2024-01-14 00:08:57 +00:00
</a>
2023-10-05 12:56:34 +00:00
</div>
</nav>
2024-01-14 00:08:57 +00:00
<div class="grid grid-cols-[12rem_12rem_auto] container mx-auto">
<div class="pt-12 border-r border-[rgba(245,169,184,0.25)] h-screen sticky top-0">
<nav class="py-4 pr-2 overflow-x-scroll"
style="height: calc(100vh - 3rem);"
2023-10-05 12:56:34 +00:00
>
{{pages}}
</nav>
</div>
2024-01-14 00:08:57 +00:00
<div class="pt-12 max-h-screen border-r border-r-[rgba(91,205,250,0.25)] overflow-x-scroll sticky top-0">
<nav class="rounded-md mt-2 p-4">
2024-02-20 10:17:21 +00:00
<h2 class="text-xl font-display pb-4 opacity-75">On this page</h2>
2023-10-05 12:56:34 +00:00
2023-07-01 01:55:29 +00:00
{{sidebar}}
</nav>
</div>
2023-09-15 03:15:35 +00:00
2024-01-14 00:08:57 +00:00
<main class="py-[3.5rem] markdown p-4 min-w-0">
{{markdown}}
</main>
</div>
2023-10-02 02:26:57 +00:00
<script src="/js/prism.min.js"></script>
<script src="/js/prism.thp.js"></script>
</body>
2023-10-05 12:56:34 +00:00
</html>