2024-09-13 02:47:49 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ metadata.language }}">
|
2024-09-26 23:45:27 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-11-22 23:24:23 +00:00
|
|
|
<title>{{ metadata.title }} | {{ title }}</title>
|
2024-11-21 01:01:53 +00:00
|
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
2024-11-22 23:24:23 +00:00
|
|
|
<meta property="og:title" content="{{ metadata.title }} | {{ title }}">
|
2024-11-22 23:21:07 +00:00
|
|
|
<meta property="og:description" content="{{ description or metadata.description }}">
|
|
|
|
<meta property="og:image" content="{{ metadata.url + page.url + preview_image }}">
|
2024-09-26 23:45:27 +00:00
|
|
|
<link rel="alternate" href="/blog/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
|
|
|
|
<link rel="alternate" href="/blog/feed.json" type="application/json" title="{{ metadata.title }}">
|
|
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
2024-12-28 21:32:16 +00:00
|
|
|
<link rel="stylesheet" href="/xkcd.css">
|
2024-09-26 23:45:27 +00:00
|
|
|
<link rel="stylesheet" href="/index.css">
|
|
|
|
<link rel="stylesheet" href="{% getBundleFileUrl 'css' %}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a href="#skip" class="visually-hidden">Skip to main content</a>
|
2024-09-13 02:47:49 +00:00
|
|
|
|
2024-09-26 23:45:27 +00:00
|
|
|
<header>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/">home</a></li>
|
2024-12-28 18:46:30 +00:00
|
|
|
<li>
|
|
|
|
<a href="/blog">blog</a>
|
|
|
|
<a href="/blog/feed.xml" style="text-decoration:none;">
|
2024-12-28 21:32:16 +00:00
|
|
|
<svg width=".8em" height=".8em">
|
2024-12-28 18:46:30 +00:00
|
|
|
<use href="/a/rss.svg#img"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</li>
|
2024-12-24 20:56:12 +00:00
|
|
|
<!--<li>toons?</li>-->
|
|
|
|
<!--<li>games?</li>-->
|
|
|
|
<li><a href="/characters">characters</a></li>
|
2024-09-27 00:42:01 +00:00
|
|
|
<li><a href="/cookbook">cookbook</a></li>
|
2024-11-24 19:31:49 +00:00
|
|
|
<li><a href="/stickers">stickers</a></li>
|
2024-09-26 23:45:27 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2024-09-13 02:47:49 +00:00
|
|
|
|
2024-09-26 23:45:27 +00:00
|
|
|
<main id="skip">
|
|
|
|
{{ content | safe }}
|
|
|
|
</main>
|
2024-09-13 02:47:49 +00:00
|
|
|
|
2024-09-26 23:45:27 +00:00
|
|
|
<footer></footer>
|
2024-09-13 02:47:49 +00:00
|
|
|
|
2024-09-26 23:45:27 +00:00
|
|
|
<!-- This page `{{ page.url | htmlBaseUrl }}` was built on {% currentBuildDate %} -->
|
|
|
|
</body>
|
2024-09-13 02:47:49 +00:00
|
|
|
</html>
|