---
layout: default
title: latest posts
subtitle: all the posts, in reverse chronological. there is an atom feed above.
permalink: /
---
{% for post in site.posts %}
{% assign category = post.category %}
{% if category == 'blog' %}
-

{{ post.date | date_to_string }}
{{ post.content | strip_html | truncatewords: 30 }}
{% endif %}
{% endfor %}