---
layout: page
title: Articles 📚
permalink: /articles/
---
Articles are important long reads where I have local comments and quotes I refer back to. My general rule is that if I mention an article to two different people, I should probably make a local page for it.
{% assign postsByYear = site.notes | group_by_exp:"post", "post.published | date: '%Y'" %}
{% assign postsByYear = postsByYear | sort: "name" | reverse %}
{% for year in postsByYear %}
{{ year.name }}
{% for post in year.items %}
{% unless post.published %}
{% comment %} post.tags contains "article" is not working here! {% endcomment %}
{% break %}
{% endunless %}
- {{ post.title }}{% if post.author %} by {{ post.author }}{% endif %} #
{% endfor %}
{% endfor %}