erick.is/templates/gemlog.jinja

18 lines
404 B
Django/Jinja

{% include "header.jinja" %}
{{ content }}
{% if stargem.posts -%}
## Posts
{% for post in stargem.posts -%}
=> {{ 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" %}