diff --git a/templates/base.html b/templates/base.html
index a06fbde397aace240a513ba9984bd9bc6a85e59f..893af0f375e5448321b9f0bcef95784e9d40aa4e 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -62,7 +62,6 @@ function changeTime(obj, label) {
     <li id="nav-create"><a href="{% url create %}">Create</a></li>
     <li id="nav-feeds"><a href="{% url feeds %}">RSS</a></li>
     <li id="nav-userprofile"><a href="{% url userprofile-home %}">Options</a></li>
-    <li id="nav-doc"><a href="{% url doc %}">Docs</a></li>
     {% if ligouser %}<li id="nav-user">Authenticated as: {{ ligouser.name }}</li>{% endif %}
 </ul>
 {% endblock %}
diff --git a/urls.py b/urls.py
index a073ff97f426f60b374beb5a4194ae1e416ad2e0..4a8e866b79eb90658344438998e3fca9d843205f 100644
--- a/urls.py
+++ b/urls.py
@@ -14,7 +14,6 @@ urlpatterns = patterns('',
 
     url (r'^$', 'gracedb.gracedb.views.index', name="home"),
     (r'^events/', include('gracedb.gracedb.urls')),
-    url (r'^doc/', 'gracedb.gracedb.doc.index', name="doc"),
     (r'^options/', include('gracedb.userprofile.urls')),
     (r'^cli/create', 'gracedb.gracedb.views.create'),
     (r'^cli/ping', 'gracedb.gracedb.views.ping'),