mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-01 11:10:51 +01:00
29 lines
863 B
HTML
29 lines
863 B
HTML
---
|
|
layout: default
|
|
nav: blognav.html
|
|
---
|
|
|
|
<script>
|
|
let style = darkTheme ? "mocha" : "latte";
|
|
$("head").append($("<link/>", {
|
|
rel: "stylesheet",
|
|
href: `https://cdn.jsdelivr.net/gh/catppuccin/python@gh-pages/pygments/catppuccin-${style}.css`
|
|
}));
|
|
</script>
|
|
|
|
<div class="section top-margin full-width-images less-wide">
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
<p>
|
|
📖 You can also read this post
|
|
{% if page.itch %}
|
|
<a href="{{ page.itch }}">on itch</a>,
|
|
{% endif %}
|
|
{% if page.steam %}
|
|
<a href="{{ page.steam }}">on Steam</a>,
|
|
{% endif %}
|
|
through <a href="/feed.xml">the Atom feed</a> or by subscribing to <a href="../../#subscribe">the mailing list</a>.
|
|
</p>
|
|
|
|
{% include anchor_headings.html html=content anchorBody="#" anchorClass="anchor-heading" %}
|
|
</div>
|