19 lines
404 B
Text
19 lines
404 B
Text
|
{% 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" %}
|