2023-03-29 00:18:06 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link href="/tailwind/output.css" rel="stylesheet">
|
|
|
|
|
|
|
|
<link href="/styles/global.css" rel="stylesheet" />
|
2023-03-31 23:23:46 +00:00
|
|
|
<link href="/styles/xcode-colors.css" rel="stylesheet" />
|
2023-03-29 00:18:06 +00:00
|
|
|
<title>Misti</title>
|
|
|
|
|
|
|
|
<!-- Google fonts - Inter -->
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2023-03-30 21:19:48 +00:00
|
|
|
<div class="marked p-4 mx-auto max-w-screen-lg">
|
2023-03-30 19:54:22 +00:00
|
|
|
{{markdown}}
|
|
|
|
</div>
|
2023-03-29 00:18:06 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
// Inter - Google fonts - load here as to not interrupt the page
|
|
|
|
const linkEl = document.createElement("link");
|
|
|
|
linkEl.href = "https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700&display=swap";
|
|
|
|
linkEl.rel = "stylesheet";
|
|
|
|
|
|
|
|
document.head.appendChild(linkEl);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|