changes to nav

This commit is contained in:
Beverly Nguyen
2024-11-18 11:49:39 -08:00
parent df0e159550
commit 0b81ed0247
4 changed files with 28 additions and 5 deletions

View File

@@ -110,12 +110,22 @@ def best_practices_nav():
def about_notify_nav(): def about_notify_nav():
return [ return [
{ {
"name": "About notify", "name": "About Notify",
"link": "main.about_notify", "link": "main.about_notify",
"sub_navigation_items": [ "sub_navigation_items": [
{ {
"name": "Why text messaging", "name": "Why text messaging",
"link": "main.why_text_messaging", "link": "main.why_text_messaging",
"sub_sub_navigation_items": [
{
"name": "Reach people using a common method",
"link": "main.why_text_messaging#reach-people-using-a-common-method",
},
{
"name": "Improve customer experience",
"link": "main.why_text_messaging#improve-customer-experience",
},
],
}, },
], ],
}, },

View File

@@ -66,7 +66,20 @@
<ul class="usa-sidenav__sublist" role="menu"> <ul class="usa-sidenav__sublist" role="menu">
{% for sub_item in item.sub_navigation_items %} {% for sub_item in item.sub_navigation_items %}
<li role="menuitem"> <li role="menuitem">
<a href="{{ url_for(sub_item.link.split('#')[0]) }}#{{ sub_item.link.split('#')[1] }}">{{ sub_item.name }}</a> <a href="{{ url_for(sub_item.link.split('#')[0]) }}#{{ sub_item.link.split('#')[1] }}">
{{ sub_item.name }}
</a>
{% if sub_item.sub_sub_navigation_items %}
<ul class="usa-sidenav__sublist usa-sidenav__sub-sublist" role="menu">
{% for sub_sub_item in sub_item.sub_sub_navigation_items %}
<li role="menuitem">
<a href="{{ url_for(sub_sub_item.link.split('#')[0]) }}#{{ sub_sub_item.link.split('#')[1] }}">
{{ sub_sub_item.name }}
</a>
</li>
{% endfor %}
</ul>
{% endif %}
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% set page_title = "About notify" %} {% set page_title = "About Notify" %}
{% block per_page_title %} {% block per_page_title %}
{{page_title}} {{page_title}}

View File

@@ -11,7 +11,7 @@
<section class="usa-prose"> <section class="usa-prose">
<h1>{{page_title}}</h1> <h1>{{page_title}}</h1>
<h2>Reach people using a common method</h2> <h2 id="reach-people-using-a-common-method">Reach people using a common method</h2>
<p> <p>
Confusing or <a Confusing or <a
href="https://kffhealthnews.org/news/tougher-returned-mail-policies-add-to-medicaid-enrollment-drop/" href="https://kffhealthnews.org/news/tougher-returned-mail-policies-add-to-medicaid-enrollment-drop/"
@@ -31,7 +31,7 @@
This means that for many people who rely on government services, cell phones may be the most reliable place to meet This means that for many people who rely on government services, cell phones may be the most reliable place to meet
people where they already are. people where they already are.
</p> </p>
<h2>Improve customer experience</h2> <h2 id="improve-customer-experience">Improve customer experience</h2>
<p> <p>
Text messages can deliver concise information and drive an audience to take action quickly. Timely reminders sent Text messages can deliver concise information and drive an audience to take action quickly. Timely reminders sent
via text message have been proven to decrease re-enrollment churn and save money for administering agencies. via text message have been proven to decrease re-enrollment churn and save money for administering agencies.