Files
notifications-admin/app/templates/views/guidance/guidance.html
T

63 lines
1.9 KiB
HTML
Raw Normal View History

2024-09-24 15:42:16 -07:00
{% extends "base.html" %}
{% block per_page_title %}
Guidance
{% endblock %}
{% block content_column_content %}
<section class="usa-prose">
<h1>Guidance</h1>
2024-10-08 11:34:46 -07:00
<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.
2024-09-24 15:42:16 -07:00
</p>
<p>This set of best practices will help you get an effective texting initiative up and running.</p>
{% set card_header = "Key elements of a texting campaign" %}
{% 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": "/guidance/clear-goals"
},
{
"svg_src": "compliant",
"card_heading": "Follow rules & regulations",
"p_text": "Understand what is required when texting the public.",
"link": "/guidance/rules-and-regulations"
},
{
"svg_src": "trust",
"card_heading": "Establish trust",
"p_text": "Help your audience anticipate and welcome your texts.",
"link": "/guidance/establish-trust"
},
{
"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": "/guidance/write-for-action"
},
{
"svg_src": "language",
"card_heading": "Send texts in multiple languages",
"p_text": "What to know as you plan translated texts.",
"link": "/guidance/multiple-languages"
},
{
"svg_src": "chart",
"card_heading": "Measure performance with benchmarking",
"p_text": "Learn how effective your texting program can be.",
"link": "/guidance/benchmark-performance"
}
2024-09-24 15:42:16 -07:00
] %}
{% with card_header=card_header, card_contents=card_contents %}{% include "components/guidance/cards.html" %}{%
endwith %}
</section>
{% endblock %}