diff --git a/templates/zephyr/accounts_home.html b/templates/zephyr/accounts_home.html
index 0815b6706e..c6180e29ab 100644
--- a/templates/zephyr/accounts_home.html
+++ b/templates/zephyr/accounts_home.html
@@ -1 +1,6 @@
-login | register
+{% extends "zephyr/base.html" %}
+
+{% block nav %}
+
Log in
+Register
+{% endblock %}
diff --git a/templates/zephyr/base.html b/templates/zephyr/base.html
index 6933e280a4..2b9d6ad2ec 100644
--- a/templates/zephyr/base.html
+++ b/templates/zephyr/base.html
@@ -5,19 +5,43 @@
Zephyr
+
-{% if not user.is_authenticated %}login | register{% endif %}
+
+
+
+
Humbug
+
+{% block nav %}
+{% endblock %}
+
+
+
+
-{% if user.is_authenticated %}logout{% endif %}
+
{% block content %}
{% endblock %}
+
+