erick.is/templates/home.jinja

21 lines
493 B
Django/Jinja

{% include "header.jinja" %}
{{ content }}
{% if stargem.posts -%}
## Latests Posts
{% for post in stargem.posts[:5] -%}
=> {{ post.path }} {{ post.frontmatter.date.strftime('%F') }} {{ post.frontmatter.title }}
{% endfor %}
{%- if stargem.posts | length > 5 %}
=> gemlog.gmi See All Posts
{% endif -%}
{% endif -%}
{% if stargem.drafts %}
## Drafts
{% for draft in stargem.drafts -%}
=> {{ draft.path }} {{ draft.frontmatter.title }}
{% endfor -%}
{% endif %}
{% include "footer.jinja" %}