diff options
Diffstat (limited to 'content/templates/post.html')
| -rw-r--r-- | content/templates/post.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/content/templates/post.html b/content/templates/post.html new file mode 100644 index 0000000..e35ad64 --- /dev/null +++ b/content/templates/post.html @@ -0,0 +1,11 @@ +{# A blog post, mirroring theme/templates/post.html. Everything but the reply footer is + the shared layout, so this extends it rather than restating it. + + Selected by the [[pages]] rule for blog/ in org-ssg.toml; a post that wants a different + layout says so with #+TEMPLATE:. #} +{% extends "base.html" %} +{% block content %} +{{ body | safe }} +<div><a href="mailto:[email protected]">Reply via email →</a></div> +<div><i>...or, comment on this post on <a href="https://bubbles.town/source/cleberg.net">Bubbles</a>!</i></div> +{% endblock %} |
