diff --git a/studyguides/templates/course.html b/studyguides/templates/course.html
index dc9da96..e67fb30 100644
--- a/studyguides/templates/course.html
+++ b/studyguides/templates/course.html
@@ -1,6 +1,6 @@
-{% extends "base.html" %} {% block main %}
+{% extends "base.html" %} {% load static %} {% block main %}
{{subject.name}} / {{ course.name }}
+ All / {{subject.name}} / {{course.name}}
{% for guide in guides %}
{% endfor %}
diff --git a/studyguides/templates/home.html b/studyguides/templates/home.html
index d566e1d..7a1a271 100644
--- a/studyguides/templates/home.html
+++ b/studyguides/templates/home.html
@@ -1,9 +1,9 @@
-{% extends "base.html" %} {% block main %}
+{% extends "base.html" %} {% load static %} {% block main %}
Subjects
+ All
{% for subject, courses in subjects %}
- {{ subject.name }}
+ {{ subject.name }}
{% for course in courses %}