diff --git a/about.tmpl b/about.tmpl
new file mode 100644
index 0000000..bef773d
--- /dev/null
+++ b/about.tmpl
@@ -0,0 +1,5 @@
+{{define "about"}}
+
+ This is about ME!
+
+{{end}}
diff --git a/blog.tmpl b/blog.tmpl
index ae30ad6..3999e2e 100644
--- a/blog.tmpl
+++ b/blog.tmpl
@@ -8,7 +8,7 @@
-
+ {{if eq .CurrentPage "blog"}}
+
{{template "content" .}}
+ {{else if eq .CurrentPage "about"}}
+
{{template "about" .}}
+ {{else if eq .CurrentPage "past"}}
+
{{template "past" .}}
+ {{end}}
+