first round of about content

This commit is contained in:
Beverly Nguyen
2024-11-13 14:32:15 -08:00
parent 01e52b9a20
commit 50e7f3d33c
4 changed files with 118 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ from app.formatters import apply_html_class, convert_markdown_template
from app.main import main
from app.main.views.pricing import CURRENT_SMS_RATE
from app.main.views.sub_navigation_dictionaries import (
about_notify_nav,
best_practices_nav,
features_nav,
using_notify_nav,
@@ -268,6 +269,15 @@ def benchmark_performance():
)
@main.route("/about/about")
@user_is_logged_in
def about_notify():
return render_template(
"views/about/about.html",
navigation_links=about_notify_nav(),
)
@main.route("/using-notify/guidance")
@user_is_logged_in
def guidance_index():

View File

@@ -101,3 +101,12 @@ def best_practices_nav():
"link": "main.benchmark_performance",
},
]
def about_notify_nav():
return [
{
"name": "About notify",
"link": "main.about_notify",
},
]