Files
notifications-admin/app/templates/views/guides/best-practices.html

66 lines
2.0 KiB
HTML
Raw Permalink Normal View History

2024-10-24 16:28:42 -07:00
{% extends "base.html" %}
2024-11-25 18:15:34 -08:00
{% set page_title = "Best Practices" %}
2024-10-24 16:28:42 -07:00
{% block per_page_title %}
2024-11-25 18:15:34 -08:00
{{page_title}}
2024-10-24 16:28:42 -07:00
{% endblock %}
{% block content_column_content %}
<section class="usa-prose">
<h1>Best Practices</h1>
<p class="font-sans-lg text-base">For texting the public</p>
<p>Effectively reaching your audience and supporting your programs goals starts with strategically planning out what
text messages can help you achieve and how to approach a thoughtful rollout.
</p>
<p>This set of best practices will help you get an effective texting initiative up and running.</p>
2025-01-13 13:57:59 -05:00
<h2 class="padding-bottom-4">
2024-10-28 13:11:29 -07:00
Key elements of a texting campaign
</h2>
2024-10-24 16:28:42 -07:00
{% set card_contents = [
{
"svg_src": "goal",
"card_heading": "Establish clear goals",
"p_text": "Start with a singular purpose. Make explicit what you want to achieve.",
"link": "/using-notify/best-practices/clear-goals"
2024-10-24 16:28:42 -07:00
},
{
"svg_src": "compliant",
"card_heading": "Follow rules & regulations",
"p_text": "Understand what is required when texting the public.",
"link": "/using-notify/best-practices/rules-and-regulations"
2024-10-24 16:28:42 -07:00
},
{
"svg_src": "trust",
"card_heading": "Establish trust",
"p_text": "Help your audience anticipate and welcome your texts.",
"link": "/using-notify/best-practices/establish-trust"
2024-10-24 16:28:42 -07:00
},
{
"svg_src": "runner",
"card_heading": "Write texts that provoke action",
"p_text": "Help your audience know what to do with the information you send.",
"link": "/using-notify/best-practices/write-for-action"
2024-10-24 16:28:42 -07:00
},
{
"svg_src": "language",
"card_heading": "Send texts in multiple languages",
"p_text": "What to know as you plan translated texts.",
"link": "/using-notify/best-practices/multiple-languages"
2024-10-24 16:28:42 -07:00
},
{
"svg_src": "chart",
"card_heading": "Measure performance with benchmarking",
"p_text": "Learn how effective your texting program can be.",
"link": "/using-notify/best-practices/benchmark-performance"
2024-10-24 16:28:42 -07:00
}
] %}
2024-11-25 18:15:34 -08:00
{% with card_contents=card_contents %}{% include "components/guides/cards.html" %}{%
2024-10-24 16:28:42 -07:00
endwith %}
</section>
{% endblock %}