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