add join notify link

This commit is contained in:
Beverly Nguyen
2025-01-03 11:48:45 -08:00
parent c65352166d
commit 3b2fa4314b
2 changed files with 23 additions and 1 deletions

View File

@@ -38,7 +38,10 @@
{% 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'}
] %}
{% endif %}
{% endif %}