diff --git a/_posts/index.html b/_posts/index.html
new file mode 100644
index 0000000..26c1649
--- /dev/null
+++ b/_posts/index.html
@@ -0,0 +1,14 @@
+---
+layout: default
+title: posts index
+---
+
+
+
Blog Posts
+
+ {% for post in site.posts %}
+ {%unless post.title == 'posts index' %}
+ - {{ post.date | date_to_string }} » {{ post.title }}
+ {%endunless%}
+ {% endfor %}
+
diff --git a/_programming/index.html b/_programming/index.html
new file mode 100644
index 0000000..4a7a064
--- /dev/null
+++ b/_programming/index.html
@@ -0,0 +1,14 @@
+---
+layout: default
+title: programming index
+---
+
+
+
Programming
+
+ {% for post in site.programming %}
+ {%unless post.title == 'programming index' %}
+ - {{ post.date | date_to_string }} » {{ post.title }}
+ {%endunless%}
+ {% endfor %}
+
diff --git a/_security/index.html b/_security/index.html
new file mode 100644
index 0000000..961b8ad
--- /dev/null
+++ b/_security/index.html
@@ -0,0 +1,14 @@
+---
+layout: default
+title: security index
+---
+
+
+
Security Thoughts
+
+ {% for post in site.security %}
+ {%unless post.title == 'security index' %}
+ - {{ post.date | date_to_string }} » {{ post.title }}
+ {%endunless%}
+ {% endfor %}
+
diff --git a/index.html b/index.html
index 2326671..b89a6ea 100644
--- a/index.html
+++ b/index.html
@@ -7,27 +7,35 @@ title: brendan mcdevitt
Blog Posts
{% for post in site.posts %}
+ {% unless post.title == 'posts index' %}
- {{ post.date | date_to_string }} » {{ post.title }}
+ {% endunless %}
{% endfor %}
Homelab Posts
{% for post in site.homelab %}
+ {% unless post.title == 'homelab index' %}
- {{ post.date | date_to_string }} » {{ post.title }}
+ {% endunless %}
{% endfor %}
Programming
{% for post in site.programming %}
+ {% unless post.title == 'programming index' %}
- {{ post.date | date_to_string }} » {{ post.title }}
+ {% endunless %}
{% endfor %}
Security Thoughts
{% for post in site.security %}
+ {% unless post.title == 'security index' %}
- {{ post.date | date_to_string }} » {{ post.title }}
+ {% endunless %}
{% endfor %}