mirror of
https://github.com/jbowdre/capsule.git
synced 2024-11-22 13:12:19 +00:00
update post template
This commit is contained in:
parent
51fe66d3fe
commit
2248113ae2
2 changed files with 18 additions and 5 deletions
|
@ -14,7 +14,7 @@
|
|||
{% endif -%}
|
||||
|
||||
{% for entry in feed.entries -%}
|
||||
=> {{ entry.url }} {{ entry.updated | date(format="%Y-%m-%d") }} - {{ entry.title }}
|
||||
=> {{ entry.url }} {{ entry.updated | date(format="%Y-%m-%d") }} {{ entry.title }}
|
||||
|
||||
{%- if entry.categories -%}
|
||||
{% for category in entry.categories %}#{{ category }}{% if not loop.last%} {% endif %}{% endfor %}
|
||||
|
|
|
@ -1,8 +1,21 @@
|
|||
{#
|
||||
This is an example of a Tera template for each individual post.
|
||||
|
||||
This is a minimal example that just adds a header with the title from the
|
||||
sidecar YAML metadata file.
|
||||
Tera template for each individual post.
|
||||
#}# {{ entry.title }}
|
||||
|
||||
{% 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 %}
|
||||
{{ entry.body }}
|
||||
─────
|
||||
|
||||
=> {{ feed.index_url }} Posts
|
||||
=> {{ feed.capsule_url }} Home
|
||||
|
||||
{% if feed.rights -%}
|
||||
{{ feed.rights }}
|
||||
{%- endif %}
|
Loading…
Reference in a new issue