diff --git a/app/main/views/index.py b/app/main/views/index.py index 057f21926..e37d847b8 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -276,6 +276,7 @@ def guidance_index(): return render_template( "views/guidance/index.html", navigation_links=using_notify_nav(), + feature_best_practices_enabled=feature_best_practices_enabled ) diff --git a/app/templates/views/guidance/index.html b/app/templates/views/guidance/index.html index a7e4d496f..2e63c6212 100644 --- a/app/templates/views/guidance/index.html +++ b/app/templates/views/guidance/index.html @@ -16,17 +16,22 @@

Below we explain how to:

{# Format content #}

Format your content

+ {% if not feature_best_practices_enabled %}

Effective texts will help your message recipients take the steps needed to secure and keep the benefits and services they depend on. To craft an effective text:

@@ -37,7 +42,7 @@
  • Say only one important thing per message.
  • Frame the message to encourage action and explain the consequences of not completing the desired action.
  • - + {% endif %}

    To create and format your message

    1. All messages start from a template
    2. @@ -45,6 +50,7 @@
    3. Add a new template or choose an existing template and select Edit.
    + {% if not feature_best_practices_enabled %} {# Add links #}

    When composing a text message, links to websites or online applications can help your recipient respond quickly.

    @@ -64,6 +70,7 @@
  • Your link might stop working if there’s a service outage.
  • You can no longer control where the redirect goes.
  • + {% endif %} {# Personalize content #}

    Personalize your content

    @@ -214,6 +221,7 @@ + {% if not feature_best_practices_enabled %} {# Preventing fraud #}

    Preventing fraud

    Texting fraud is ever prevalent and while we can’t eliminate the risk, we can reduce the chances that recipients will @@ -240,5 +248,5 @@ in a text. If you have questions about how to protect your privacy, see statename.gov/privacy.

    - + {% endif %} {% endblock %}