Files
unprompted/_includes/base.njk
Stephen Donahue afb33e26a6
All checks were successful
Deploy to S3 / deploy (push) Successful in 1m41s
Fix column overflow and render math with KaTeX
- minmax(0,1fr)+min-width:0 and pre-wrap so a long fenced line no longer blows out the grid
- build-time KaTeX via @vscode/markdown-it-katex; ship katex CSS+fonts and link in layouts
2026-06-28 01:20:01 +00:00

32 lines
800 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if title %}{{ title }} — un:prompted{% else %}un:prompted{% endif %}</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/katex.min.css">
</head>
<body>
<header class="site-header">
<a href="/" class="site-title">un:prompted</a>
</header>
<div class="site-layout">
<main class="content">
{{ content | safe }}
</main>
{% include "sidebar.njk" %}
</div>
<footer class="site-footer">
<nav class="footer-nav">
<a href="/about/">about</a>
<a href="/code/">code</a>
</nav>
</footer>
</body>
</html>