2017-11-28 11:56:30 +00:00
|
|
|
def features_nav():
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
"name": "Features",
|
|
|
|
|
"link": "main.features",
|
2019-04-16 15:19:28 +01:00
|
|
|
"sub_navigation_items": [
|
2023-06-09 10:59:01 -04:00
|
|
|
# {
|
|
|
|
|
# "name": "Text messages",
|
|
|
|
|
# "link": "main.features_sms",
|
|
|
|
|
# },
|
2023-08-25 09:12:23 -07:00
|
|
|
],
|
2019-04-09 15:16:50 +01:00
|
|
|
},
|
2017-11-28 11:56:30 +00:00
|
|
|
{
|
|
|
|
|
"name": "Roadmap",
|
|
|
|
|
"link": "main.roadmap",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Security",
|
|
|
|
|
"link": "main.security",
|
|
|
|
|
},
|
|
|
|
|
]
|
2019-06-04 10:48:23 +01:00
|
|
|
|
|
|
|
|
|
2020-01-24 12:15:27 +00:00
|
|
|
def using_notify_nav():
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
"name": "Get started",
|
|
|
|
|
"link": "main.get_started",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Trial mode",
|
|
|
|
|
"link": "main.trial_mode_new",
|
|
|
|
|
},
|
2023-06-09 10:59:01 -04:00
|
|
|
{
|
2024-05-20 11:51:09 -04:00
|
|
|
"name": "Tracking usage",
|
2023-06-09 10:59:01 -04:00
|
|
|
"link": "main.pricing",
|
|
|
|
|
},
|
2020-01-24 12:15:27 +00:00
|
|
|
{
|
|
|
|
|
"name": "Delivery status",
|
|
|
|
|
"link": "main.message_status",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Guidance",
|
2020-01-24 15:57:29 +00:00
|
|
|
"link": "main.guidance_index",
|
2023-05-08 10:49:30 -04:00
|
|
|
# "sub_navigation_items": [
|
|
|
|
|
# {
|
|
|
|
|
# "name": "Formatting",
|
|
|
|
|
# "link": "main.edit_and_format_messages",
|
|
|
|
|
# },
|
|
|
|
|
# {
|
|
|
|
|
# "name": "Send files by email",
|
|
|
|
|
# "link": "main.send_files_by_email",
|
|
|
|
|
# },
|
|
|
|
|
# ]
|
|
|
|
|
# {
|
|
|
|
|
# "name": "API documentation",
|
|
|
|
|
# "link": "main.documentation",
|
|
|
|
|
# },
|
2022-11-28 11:30:25 -05:00
|
|
|
},
|
2020-01-24 12:15:27 +00:00
|
|
|
]
|
2024-09-18 22:40:48 -07:00
|
|
|
|
|
|
|
|
|
2024-10-24 16:28:42 -07:00
|
|
|
def best_practices_nav():
|
2024-09-18 22:40:48 -07:00
|
|
|
return [
|
|
|
|
|
{
|
2024-10-24 16:28:42 -07:00
|
|
|
"name": "Best Practices",
|
|
|
|
|
"link": "main.best_practices",
|
2024-09-18 22:40:48 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Clear goals",
|
|
|
|
|
"link": "main.clear_goals",
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-10-08 11:34:46 -07:00
|
|
|
"name": "Rules and regulations",
|
2024-09-18 22:40:48 -07:00
|
|
|
"link": "main.rules_and_regulations",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Establish trust",
|
|
|
|
|
"link": "main.establish_trust",
|
|
|
|
|
"sub_navigation_items": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Get the word out",
|
2024-09-23 18:58:22 -07:00
|
|
|
"link": "main.establish_trust#get-the-word-out",
|
2024-09-18 22:40:48 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "As people receive texts",
|
2024-09-23 18:58:22 -07:00
|
|
|
"link": "main.establish_trust#as-people-receive-texts",
|
2024-09-18 22:40:48 -07:00
|
|
|
},
|
2024-09-19 13:04:33 -07:00
|
|
|
],
|
2024-09-18 22:40:48 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Write for action",
|
|
|
|
|
"link": "main.write_for_action",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Multiple languages",
|
|
|
|
|
"link": "main.multiple_languages",
|
|
|
|
|
},
|
2024-09-25 09:38:21 -07:00
|
|
|
{
|
2024-10-08 11:34:46 -07:00
|
|
|
"name": "Benchmark performance",
|
2024-09-25 09:38:21 -07:00
|
|
|
"link": "main.benchmark_performance",
|
|
|
|
|
},
|
2024-09-18 22:40:48 -07:00
|
|
|
]
|