---
title: Blog
pagestyle: posts
layout: default
---
{% for post in paginator.posts %}
{{ post.title }}
{% if post.tags.size > 0 %}
{% for post_tag in post.tags %}
{% assign tag = site.data.tags[post_tag] %}
{% if tag %}
- {{ tag.name }}
{% endif %}
{% endfor %}
{% endif %}
{{ post.excerpt }}
{% endfor %}