diff --git a/_includes/comicnav.html b/_includes/comicnav.html
new file mode 100644
index 0000000..de88c6b
--- /dev/null
+++ b/_includes/comicnav.html
@@ -0,0 +1,12 @@
+back
+{% for post in site.comic %}
+ {% if post.title == "comic index" %}
+ {% continue %}
+ {% endif %}
+
+ {% if post.header %}
+
{{ post.header }}
+ {% endif %}
+
+ {{ post.title | downcase }}
+{% endfor %}
diff --git a/_includes/navigation.html b/_includes/topnav.html
similarity index 100%
rename from _includes/navigation.html
rename to _includes/topnav.html
diff --git a/_layouts/comic.html b/_layouts/comic.html
index a30fb17..0a5b49f 100644
--- a/_layouts/comic.html
+++ b/_layouts/comic.html
@@ -1,5 +1,6 @@
---
layout: default
+navbar: "comicnav"
---
{{ page.title }}
{{ page.name }}
diff --git a/_layouts/default.html b/_layouts/default.html
index 6e07b3a..c2ec7b5 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,3 +1,6 @@
+---
+navbar: topnav
+---
@@ -13,7 +16,9 @@