Files
unprompted/_includes/column.njk

44 lines
1.1 KiB
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2026-04-09 02:12:21 +00:00
<title>{{ title | stripMarkdown }} — un:prompted</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header class="site-header">
<a href="/" class="site-title">un:prompted</a>
</header>
<div class="site-layout">
<main class="content">
<article class="column-entry">
{% if hero %}
<figure class="column-hero">
{% heroImage hero, heroAlt or title %}
</figure>
{% endif %}
<header class="column-header">
2026-04-09 02:12:21 +00:00
<h1>{{ title | inlineMarkdown | safe }}</h1>
<time datetime="{{ date | isoDate }}">{{ date | readableDate }}</time>
</header>
<div class="column-body">
{{ content | safe }}
</div>
</article>
</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>