2020-01-24 12:15:27 +00:00
|
|
|
def using_notify_nav():
|
2024-11-26 13:45:43 -08:00
|
|
|
nav_items = [
|
|
|
|
|
{"name": "Get started", "link": "main.get_started"},
|
2024-09-18 22:40:48 -07:00
|
|
|
{
|
2025-01-22 10:55:42 -08:00
|
|
|
"name": "Best practices",
|
2024-10-24 16:28:42 -07:00
|
|
|
"link": "main.best_practices",
|
2025-01-13 14:47:41 -05:00
|
|
|
"sub_navigation_items": [
|
|
|
|
|
{
|
2025-01-13 15:02:46 -05:00
|
|
|
"name": "Clear goals",
|
|
|
|
|
"link": "main.clear_goals",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Rules and regulations",
|
|
|
|
|
"link": "main.rules_and_regulations",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Establish trust",
|
|
|
|
|
"link": "main.establish_trust",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Write for action",
|
|
|
|
|
"link": "main.write_for_action",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Multiple languages",
|
|
|
|
|
"link": "main.multiple_languages",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Benchmark performance",
|
|
|
|
|
"link": "main.benchmark_performance",
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-09-25 09:38:21 -07:00
|
|
|
},
|
2025-01-13 14:47:41 -05:00
|
|
|
{"name": "Trial mode", "link": "main.trial_mode_new"},
|
|
|
|
|
{"name": "Tracking usage", "link": "main.pricing"},
|
2025-01-22 10:55:42 -08:00
|
|
|
{"name": "Delivery status", "link": "main.message_status"},
|
2025-01-22 10:41:29 -08:00
|
|
|
{"name": "How to", "link": "main.how_to"},
|
2024-09-18 22:40:48 -07:00
|
|
|
]
|
2024-11-13 14:32:15 -08:00
|
|
|
|
2025-01-13 14:47:41 -05:00
|
|
|
return nav_items
|
|
|
|
|
|
2024-11-13 14:32:15 -08:00
|
|
|
|
|
|
|
|
def about_notify_nav():
|
|
|
|
|
return [
|
|
|
|
|
{
|
2024-11-18 11:49:39 -08:00
|
|
|
"name": "About Notify",
|
2024-11-13 14:32:15 -08:00
|
|
|
"link": "main.about_notify",
|
2024-11-20 09:43:12 -08:00
|
|
|
"sub_navigation_items": [
|
2024-11-18 10:41:45 -08:00
|
|
|
{
|
|
|
|
|
"name": "Why text messaging",
|
|
|
|
|
"link": "main.why_text_messaging",
|
|
|
|
|
},
|
2024-11-20 09:43:12 -08:00
|
|
|
{
|
|
|
|
|
"name": "Security",
|
|
|
|
|
"link": "main.about_security",
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-11-13 14:32:15 -08:00
|
|
|
},
|
2024-11-18 14:00:52 -08:00
|
|
|
{
|
2025-01-07 15:54:03 -08:00
|
|
|
"name": "Contact us",
|
2024-11-18 14:00:52 -08:00
|
|
|
"link": "main.contact",
|
|
|
|
|
},
|
2024-11-13 14:32:15 -08:00
|
|
|
]
|