added side nav

This commit is contained in:
Beverly Nguyen
2025-01-03 13:05:47 -08:00
parent 3b2fa4314b
commit 94c5eb5234
2 changed files with 6 additions and 1 deletions

View File

@@ -114,6 +114,10 @@ def about_notify_nav():
},
],
},
{
"name": "Join Notify",
"link": "main.join_notify",
},
{
"name": "Contact",
"link": "main.contact",

View File

@@ -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 %}