TinyLifeWeb/web/_layouts/blog.html

30 lines
1 KiB
HTML
Raw Normal View History

2023-06-01 23:02:09 +02:00
---
layout: default
nav: blognav.html
---
2023-06-13 19:20:57 +02:00
<script>
let style = darkTheme ? "monokai" : "default";
$("head").append($("<link/>", {
rel: "stylesheet",
href: `https://cdn.jsdelivr.net/gh/richleland/pygments-css@master/${style}.css`
}));
</script>
2023-06-02 13:38:06 +02:00
<style>
h1 .anchor-heading, h2 .anchor-heading, h3 .anchor-heading, h4 .anchor-heading, h5 .anchor-heading, h6 .anchor-heading {
visibility: hidden;
}
h1:hover .anchor-heading, h2:hover .anchor-heading, h3:hover .anchor-heading, h4:hover .anchor-heading, h5:hover .anchor-heading, h6:hover .anchor-heading {
visibility: visible;
}
</style>
2023-06-01 23:02:09 +02:00
<div class="section blog-section">
<h1>{{ page.title }}</h1>
2023-06-04 19:06:57 +02:00
<p>📖 You can also read this post <a href="{{ page.itch }}">on itch</a> or <a href="{{ page.steam }}">on Steam</a>, or you can subscribe to <a href="../../#subscribe">the mailing list</a> or <a href="/feed.xml">the Atom feed</a>.</p>
2023-06-01 23:02:09 +02:00
2023-06-02 13:38:06 +02:00
{% include anchor_headings.html html=content anchorBody="#" anchorClass="anchor-heading" %}
2023-06-01 23:02:09 +02:00
</div>