From 94c5eb5234151a8679b6cca728b7b747af530685 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 3 Jan 2025 13:05:47 -0800 Subject: [PATCH] added side nav --- app/main/views/sub_navigation_dictionaries.py | 4 ++++ app/templates/components/header.html | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index 16991297a..9bd008842 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -114,6 +114,10 @@ def about_notify_nav(): }, ], }, + { + "name": "Join Notify", + "link": "main.join_notify", + }, { "name": "Contact", "link": "main.contact", diff --git a/app/templates/components/header.html b/app/templates/components/header.html index e9d3d107d..847ac2d30 100644 --- a/app/templates/components/header.html +++ b/app/templates/components/header.html @@ -40,7 +40,8 @@ {% if FEATURE_ABOUT_PAGE_ENABLED %} {% set navigation = navigation + [ {"href": url_for('main.about_notify'), "text": "About Notify", "active": request.path == '/about'}, - {"href": url_for('main.join_notify'), "text": "Join Notify", "active": request.path == '/join-notify'} + {"href": url_for('main.join_notify'), "text": "Join Notify", "active": request.path == '/join-notify'}, + {"href": url_for('main.contact'), "text": "Contact", "active": request.path == '/contact'} ] %} {% endif %} {% endif %}