---
layout: "base.njk"
---
{{ content | safe }}
{%- for name, collection in collections -%}
{%- if name in ["posts"] -%}
{{name | capitalize }}
{%- for item in collection | reverse -%}
-
{{item.data.title}}
{%- if item.data.date -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- endfor -%}