---
layout: default
---
{% if paginator.total_pages > 0 %}
{% assign posts = paginator.posts %}
{% for post in posts %}
{{ post.date | date: "%b %-d, %Y" }} | by {{ post.author }} | Tags:
{% for tag in post.tags %}
{% if tag == post.tags.last %}
{{ tag }}
{% else %}
{{ tag }},
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}