Merge pull request #2127 from GSA/2103-aboutsecurity

About Security Content
This commit is contained in:
Beverly Nguyen
2024-11-25 16:51:36 -08:00
committed by GitHub
4 changed files with 79 additions and 0 deletions

View File

@@ -313,6 +313,14 @@ def about_notify():
)
@main.route("/about/security")
def about_security():
return render_template(
"views/about/security.html",
navigation_links=about_notify_nav(),
)
@main.route("/about/why-text-messaging")
def why_text_messaging():
return render_template(

View File

@@ -131,6 +131,10 @@ def about_notify_nav():
},
],
},
{
"name": "Security",
"link": "main.about_security",
},
],
},
]