TinyLifeWeb/web/_layouts/blog.html
2024-05-21 18:16:20 +02:00

30 lines
851 B
HTML

---
layout: default
nav: blognav.html
---
<script>
let style = darkTheme ? "monokai" : "default";
$("head").append($("<link/>", {
rel: "stylesheet",
href: `https://cdn.jsdelivr.net/gh/richleland/pygments-css@master/${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>