diff options
Diffstat (limited to 'content/templates')
| -rw-r--r-- | content/templates/base.html | 8 | ||||
| -rw-r--r-- | content/templates/post.html | 11 |
2 files changed, 13 insertions, 6 deletions
diff --git a/content/templates/base.html b/content/templates/base.html index c012e65..6345700 100644 --- a/content/templates/base.html +++ b/content/templates/base.html @@ -57,13 +57,9 @@ {%- if page.tags %} <p>{% for tag in page.tags %}<a href="{{ root }}tags/{{ tag }}.html">#{{ tag }}</a> {% endfor %}</p> {%- endif %} +{#- Blog posts add a reply footer inside this block; see post.html, which the + [[pages]] rule in org-ssg.toml selects for everything under blog/. #} <div>{% block content %}{{ body | safe }}{% endblock %}</div> -{#- Blog posts carry a reply footer; other pages do not. org-ssg has no per-page - template selection, so the page's own URL is what tells them apart. #} -{%- if page.url is startingwith("blog/") %} -<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> -{%- endif %} </article> {% endblock %} </main> 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 %} |
