diff --git a/templates/index.html b/templates/index.html
index d2b8324..7af60c0 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,5 +1,11 @@
{% extends "base.html" %}
+
+{% block title %}
+ kennethreitz.org
+{% endblock %}
+
+
{% block heading %}
Hi, there.
diff --git a/templates/list.html b/templates/list.html
index 5c642a0..e487b83 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -1,5 +1,9 @@
{% extends "base.html" %}
+{% block title %}
+ {{ view|title }}{% if filter %} of {{ filter|title }}{% endif %} — kennethreitz.org
+{% endblock %}
+
{% block heading %}
{{ view|title }}{% if filter %} of {{ filter|title }}{% endif %}
diff --git a/templates/page.html b/templates/page.html
index a3bc511..31ee4b8 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,5 +1,9 @@
{% extends "base.html" %}
+{% block title %}
+ {{ page.title }} — kennethreitz.org
+{% endblock %}
+
{% block heading %}
{{ page.title }}
{% endblock %}