A short wishlist of features and improvements for this website


Just for the sake of keeping a record, this website currently looks something like this:

A screenshot of a draft of this blog post

I'm happy that things are beginning to take shape, but there are a lot of things I'm thinking about working on to improve the site. This is a completely unordered list of tasks and ideas:

I spent a few hours this morning banging my head against the wall trying to figure out how to get the latest post using Nunjucks. I finally got it adding the following to my index.md:

{% set rev = collections.post | reverse %}
{% set latest = rev[0] %}
Latest post: [ {{ latest.data.title }} ]( {{ latest.url }} )
*{{ latest.data.date | readableDate() }}*