erick.is/templates/gemlog.jinja

19 lines
457 B
Text
Raw Permalink Normal View History

{% include "header.jinja" %}
{{ content }}
{% if stargem.posts -%}
## Posts
2025-01-12 10:09:12 -05:00
{% for post in (stargem.posts | sort(attribute='frontmatter.date', reverse=True)) -%}
=> {{ post.path }} {{ post.frontmatter.date.strftime('%F') }} {{ post.frontmatter.title }}
{% endfor -%}
{% endif -%}
{% if stargem.drafts %}
## Drafts
{% for draft in stargem.drafts -%}
=> {{ draft.path }} {{ draft.frontmatter.title }}
{% endfor -%}
{% endif %}
{% include "footer.jinja" %}