---
layout: default
title: "Post Archives"
---
{% if page.type == "year" %}
Posts from {{ page.date | date: "%Y" }}
{% endif %}
{% if page.type == "month" %}
Posts from {{ page.date | date: "%-d, %Y" }}
{% endif %}
{% if page.type == "day" %}
Posts from {{ page.date | date: "%b %-d, %Y" }}
{% endif %}
{% if page.type == "tag" or page.type == "category" %}
Posts with {{ page.type }} '{{ page.title }}'
{% endif %}
{% for post in page.posts %}
-
{{ post.date | date: "%b %-d, %Y" }}
-
{{ post.title }}
{% endfor %}