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 a6abd1282..847ac2d30 100644 --- a/app/templates/components/header.html +++ b/app/templates/components/header.html @@ -38,7 +38,11 @@ {% set navigation = [] %} {% if FEATURE_ABOUT_PAGE_ENABLED %} -{% set navigation = navigation + [{"href": url_for('main.about_notify'), "text": "About Notify", "active": request.path == '/about'}] %} +{% 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.contact'), "text": "Contact", "active": request.path == '/contact'} +] %} {% endif %} {% endif %}