aboutsummaryrefslogtreecommitdiff
path: root/content/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'content/templates/post.html')
-rw-r--r--content/templates/post.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/content/templates/post.html b/content/templates/post.html
index e35ad64..ea5c28d 100644
--- a/content/templates/post.html
+++ b/content/templates/post.html
@@ -1,11 +1,9 @@
-{# 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.
+{# A blog post: the shared layout plus the reply snippet.
- Selected by the [[pages]] rule for blog/ in org-ssg.toml; a post that wants a different
- layout says so with #+TEMPLATE:. #}
+ The snippet lives in reply.html so its wording is a file you edit rather than a line
+ buried in a layout — and so emptying that file removes it from every post at once. #}
{% extends "base.html" %}
{% block content %}
{{ body | safe }}
-<div><a href="mailto:[email protected]">Reply via email &rarr;</a></div>
-<div><i>...or, comment on this post on <a href="https://bubbles.town/source/cleberg.net">Bubbles</a>!</i></div>
+{% include "reply.html" %}
{% endblock %}