---
layout: page
title: Blog 🖊
permalink: /blog/
---
Blog posts from 2023 to present day. The personal blog has more frequent micro posts, and the full archive is at 2023.bmannconsulting.com.
{% assign postsByYear =
site.posts | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in postsByYear %}
{{ year.name }}
{% for post in year.items %}
{% if post.title == 'Migration' %}
{% break %}
{% endif %}
{% unless post.section == 'journal' %}
- {{ post.title }}
{% endunless %}
{% endfor %}
{% if year.name == '2012' %}
{% break %}
{% endif %}
{% endfor %}