---
title: Blog
layout: default
permalink: /blog/
excerpt: |
I'm Tom Hodson. Welcome to my little home on the web! There's a blog, a cv and some projects to look at.
mathjax: false
img:
src: /assets/images/avatar.jpeg
alt: A picture of me.
---
{% assign draft_posts = site.posts | where: "draft", "true" %}
{% assign published_posts = site.posts | where: "draft", "false" %}
{% if jekyll.environment == 'development' %}
{% for post in draft_posts %}
{% include post_summary.html %}
{% endfor %}
{% endif %}
{% for post in published_posts %}
{% include post_summary.html %}
{% endfor %}