diff --git a/_includes/nav.html b/_includes/nav.html
index d29e879..991a2c2 100644
--- a/_includes/nav.html
+++ b/_includes/nav.html
@@ -4,6 +4,8 @@
{%- if my_page.title -%}
{%- if my_page.url == page.url -%}
+
+ {%- if page.list_title -%}
+
{{ page.list_title | capitalize }}
+ {%- endif -%}
+
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
+ {%- for post in posts -%}
+
+
+
+
+
+
+ {{ post.date | date: date_format }}
+ {%- if site.show_excerpts -%}
+ {{ post.excerpt }}
+ {%- endif -%}
+
+
+ {%- endfor -%}
+
+
+
+ {%- endif -%}
+ {%- break -%}
+{%- endfor -%}
diff --git a/_layouts/category.html b/_layouts/category.html
new file mode 100644
index 0000000..bb2aed9
--- /dev/null
+++ b/_layouts/category.html
@@ -0,0 +1,7 @@
+---
+layout: default
+---
+
+{{ content }}
+
+{% include posts.html %}