---
title: Blog
pagestyle: posts
layout: default
---
{% for post in paginator.posts %}
{% if post.subtitle %}
{{ post.subtitle }}
{% endif %}
{% 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 %}