---
layout: "layouts/base"
permalink: /catalogue/index.html
title: Catalogue
---
{% from "macros/catalogue.njk" import list %}
Catalogue
A collection of my thoughts on various forms of media that I consume.
{% set catalogueTypes = collections.catalogueByType | keys %}
{% set itemsByYear = collections.catalogue | organizeByDate %}
{% set years = itemsByYear | keys | sort("desc") %}
{% for year in years %}
{% set itemsInYear = itemsByYear[year] %}
{{ year }}
{{ list(itemsInYear) }}
{{ list(itemsInYear) }}
{% endfor %}