---
layout: default
---
{% unless site.dash.show_author == false %}
{% include author.html %}
{% endunless %}
{% for post in site.posts %}
{% for tag in post.tags %}
{% if tag == page.tag %}
{{ post.title }}
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% if site.date_format %}
{{ post.date | date: site.date_format }}
{% else %}
{{ post.date | date: "%b %-d, %Y" }}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% include tagcloud.html %}