2025-01-12 09:15:19 -05:00
|
|
|
{% 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)) -%}
|
2025-01-12 09:15:19 -05:00
|
|
|
=> {{ 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" %}
|