Skip to content

Commit

Permalink
added side nav
Browse files Browse the repository at this point in the history
  • Loading branch information
Beverly Nguyen authored and Beverly Nguyen committed Jan 3, 2025
1 parent 3b2fa43 commit 94c5eb5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app/main/views/sub_navigation_dictionaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ def about_notify_nav():
},
],
},
{
"name": "Join Notify",
"link": "main.join_notify",
},
{
"name": "Contact",
"link": "main.contact",
Expand Down
3 changes: 2 additions & 1 deletion app/templates/components/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit 94c5eb5

Please sign in to comment.