diff --git a/archives.html b/archives.html
index 39c8752..620a2bf 100644
--- a/archives.html
+++ b/archives.html
@@ -1,50 +1,8 @@
-
-
-
-
-
-
- {{ title }} | Redacted Life
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+{% extends "base.html" %}
+{% block left_content %}
+Redacted Life
+
+{% for episode in episodes %}
+ - {{ episode.title }}
+{% endfor %}
+{% endblock %}
diff --git a/base.html b/base.html
new file mode 100644
index 0000000..6e09cd7
--- /dev/null
+++ b/base.html
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+ {{ title }} | Redacted Life
+
+
+
+
+
+
+
+
+
+
+
+
+ {% block left_content %}
+
Redacted Life
+ {% endblock %}
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
index 340e489..2f5a502 100644
--- a/index.html
+++ b/index.html
@@ -1,55 +1,13 @@
-
-
-
-
-
-
- {{ title }} | Redacted Life
-
-
-
-
-
-
-
-
-
-
-
-
-
Redacted Life
-
-
-
-
- Show Notes
- {{ show_notes }}
-
-
-
-
-
-
-
-
-
-
+{% extends "base.html" %}
+{% block left_content %}
+Redacted Life
+
+
+
+
+ Show Notes
+ {{ show_notes }}
+
+{% endblock %}