diff --git a/templates/base.html b/templates/base.html
index 31d220df..cb97b374 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -21,8 +21,6 @@
{% include 'navigation/topbar.html' %}
- {% include 'navigation/global_navigation.html' %}
-
{% block sidenav %}{% endblock %}
diff --git a/templates/navigation/global_navigation.html b/templates/navigation/global_navigation.html
deleted file mode 100644
index 90f9bac5..00000000
--- a/templates/navigation/global_navigation.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% from "components/sidenav_item.html" import SidenavItem %}
-
-
-
- {{ SidenavItem("New Task Order",
- href=url_for("task_orders.get_started"),
- icon="plus",
- active=g.matchesPath('/task_orders/new'),
- ) }}
-
- {% if g.current_user.has_portfolios %}
- {{ SidenavItem("Portfolios", href="/portfolios", icon="cloud", active=g.matchesPath('/portfolios')) }}
- {% endif %}
-
- {% if g.Authorization.has_atat_permission(g.current_user, g.Permissions.VIEW_AUDIT_LOG) %}
- {{ SidenavItem("Activity History", url_for('atst.activity_history'), icon="time", active=g.matchesPath('/activity-history')) }}
- {% endif %}
-
-