capsule/templates/post.tera

23 lines
664 B
Plaintext
Raw Normal View History

2024-03-03 22:34:46 +00:00
{#
2024-03-04 01:23:27 +00:00
Tera template for each individual post.
2024-03-04 23:09:14 +00:00
#}=> {{ feed.capsule_url }} [home]
# {{ entry.title }}
2024-03-04 01:23:27 +00:00
{% if entry.published != entry.updated -%}
* {{ entry.published | date(format="%Y-%m-%d") }} ~ {{ entry.updated | date(format="%Y-%m-%d") }}
{% else -%}
* {{ entry.updated | date(format="%Y-%m-%d") }}
{% endif -%}
{% if entry.categories -%}
* Categories: {{ entry.categories | join(sep=", ") }}
{% endif %}
2024-03-03 22:34:46 +00:00
{{ entry.body }}
2024-04-05 20:58:56 +00:00
2024-06-19 15:17:23 +00:00
=> mailto:cover.deer.clue@clkdmail.com?subject=Re:%20{{ entry.title | urlencode }} 📧 Reply via email
2024-03-04 01:23:27 +00:00
─────
2024-03-04 23:09:14 +00:00
=> {{ feed.index_url }} [posts]
=> {{ feed.capsule_url }} [home]
2024-03-04 01:23:27 +00:00
{% if feed.rights -%}
{{ feed.rights }}
{%- endif %}