---
layout: default
title: Tags
permalink: /tags/
header_display: false
---
{% for tag in site.tags %}
{{ tag[0] }}
{% for tag_post in tag[1] %}
{% if tag_post.title != null %}
{% if page.url == tag_post.url %}
- {{tag_post.title}}
{% else %}
- {{ tag_post.date | date: "%B %e, %Y" }} » {{tag_post.title}}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}