diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html
index c215648f..6d050097 100644
--- a/bookwyrm/templates/layout.html
+++ b/bookwyrm/templates/layout.html
@@ -67,8 +67,8 @@
{% trans "Lists" %}
-
- {% trans "Directory" %}
+
+ {% trans "Discover" %}
{% endif %}
@@ -89,6 +89,11 @@
{{ request.user.display_name }}
+ -
+
+ {% trans "Directory" %}
+
+
-
{% trans 'Your Books' %}
diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py
index eb8491a9..4c85954b 100644
--- a/bookwyrm/urls.py
+++ b/bookwyrm/urls.py
@@ -162,7 +162,7 @@ urlpatterns = [
# landing pages
re_path(r"^about/?$", views.About.as_view(), name="about"),
path("", views.Home.as_view(), name="landing"),
- re_path(r"^discover/?$", views.Discover.as_view()),
+ re_path(r"^discover/?$", views.Discover.as_view(), name="discover"),
re_path(r"^notifications/?$", views.Notifications.as_view(), name="notifications"),
re_path(
r"^notifications/(?Pmentions)/?$",