2021-07-09 01:59:28 +02:00
---
layout: default
nav: nav/blognav.html
---
{% if page.book %}
< link rel = "stylesheet" href = "/style/book.css" >
{% else %}
< script >
2021-11-11 03:05:33 +01:00
let style = dark ? "monokai" : "friendly";
addStyle(`https://cdn.jsdelivr.net/gh/richleland/pygments-css@master/${style}.css`);
2021-07-09 01:59:28 +02:00
< / script >
{% endif %}
< div class = "list-display rounded" >
< div class = "blog-isolated" >
< h1 > {{ page.title }}< / h1 >
{% if page.archived %}
2021-12-01 18:18:47 +01:00
< p > 🧓 < em > This post has been archived.< / em > < / p >
{% endif %}
{% if page.mature %}
< p > ⚠️ < em > This post contains mature content.< / em > < / p >
2021-07-09 01:59:28 +02:00
{% endif %}
{% if page.reedsy %}
2021-12-01 18:18:47 +01:00
< p > 📘 < em > This story was inspired by a Reedsy Prompt and submitted to their competition. As such, it has also been published on < a href = "{{ page.reedsy }}" > their website< / a > .< / em > < / p >
2021-07-09 01:59:28 +02:00
{% endif %}
< div class = "post-content" >
{{ content }}
< / div >
< span class = "text-muted project-status blog-isolated-status" > {{ page.date | date_to_string }}< / span >
{% if page.discuss %}
2021-12-01 18:18:47 +01:00
🧵 < a href = "{{ page.discuss }}" class = "blog-discuss" > Discuss this post< / a >
2021-07-09 01:59:28 +02:00
{% endif %}
< / div >
< / div >