mirror of
https://github.com/jbowdre/capsule.git
synced 2024-11-10 00:42:18 +00:00
23 lines
No EOL
570 B
Text
23 lines
No EOL
570 B
Text
{#
|
|
Tera template for your gemlog's index page.
|
|
#}# {{ feed.title }}
|
|
|
|
{% if feed.subtitle -%}
|
|
## {{ feed.subtitle }}
|
|
{% endif %}
|
|
{% for entry in feed.entries -%}
|
|
=> {{ 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 %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
─────
|
|
|
|
=> {{ feed.feed_url }} [gemini feed]
|
|
=> atom-https.xml [https feed]
|
|
=> {{ feed.capsule_url }} [home]
|
|
|
|
{% if feed.rights -%}
|
|
{{ feed.rights }}
|
|
{%- endif %} |