mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-02 15:38:19 -04:00
24 lines
496 B
Python
24 lines
496 B
Python
|
|
def features_nav():
|
||
|
|
return [
|
||
|
|
{
|
||
|
|
"name": "Features",
|
||
|
|
"link": "main.features",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Roadmap",
|
||
|
|
"link": "main.roadmap",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Security",
|
||
|
|
"link": "main.security",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Terms of use",
|
||
|
|
"link": "main.terms",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Using Notify",
|
||
|
|
"link": "main.using_notify",
|
||
|
|
},
|
||
|
|
]
|