diff --git a/app/assets/images/calendar.png b/app/assets/images/calendar.png new file mode 100644 index 000000000..20bf82540 Binary files /dev/null and b/app/assets/images/calendar.png differ diff --git a/app/assets/images/calendar.svg b/app/assets/images/calendar.svg deleted file mode 100644 index 68ef9c102..000000000 --- a/app/assets/images/calendar.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/app/assets/images/checklist.png b/app/assets/images/checklist.png new file mode 100644 index 000000000..e86e2f670 Binary files /dev/null and b/app/assets/images/checklist.png differ diff --git a/app/assets/images/checklist.svg b/app/assets/images/checklist.svg deleted file mode 100644 index 54757ba12..000000000 --- a/app/assets/images/checklist.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/app/assets/images/reminder.png b/app/assets/images/reminder.png new file mode 100644 index 000000000..a93d3c1a9 Binary files /dev/null and b/app/assets/images/reminder.png differ diff --git a/app/assets/images/reminder.svg b/app/assets/images/reminder.svg deleted file mode 100644 index 97cf8f3f5..000000000 --- a/app/assets/images/reminder.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/app/templates/views/about/why-text-messaging.html b/app/templates/views/about/why-text-messaging.html index 68548bce2..efb2df873 100644 --- a/app/templates/views/about/why-text-messaging.html +++ b/app/templates/views/about/why-text-messaging.html @@ -46,34 +46,38 @@

{% set card_contents = [ { - "svg_src": "calendar", + "image_src": asset_url('images/calendar.png'), "card_heading": "Reminders", "p_text": "In a text bubble // Your Quality Control food phone interview is on ((date)) at ((time)). Failure to - attend may lead - to closure of your benefits. Call 1-800-222-3333 with questions.", + attend may lead to closure of your benefits. Call 1-800-222-3333 with questions.", + "alt_text": "reminder text example" }, { - "svg_src": "reminder", + "image_src": asset_url('images/reminder.png'), "card_heading": "Alerts to take action", - "p_text": " In a text bubble // Your household's Medicaid coverage is expiring. To keep getting Medicaid, you must + "p_text": "In a text bubble // Your household's Medicaid coverage is expiring. To keep getting Medicaid, you must complete your renewal by ((date)). You can renew online at dhs.state.gov…", + "alt_text": "alerts text example" }, { - "svg_src": "checklist", + "image_src": asset_url('images/checklist.png'), "card_heading": "Important status updates", "p_text": "In a text bubble // Your passport has been issued at the Los Angeles Passport Agency. Please come to the - desk - between - 1:30pm and 2:30pm today to pick up your passport…", + desk between 1:30pm and 2:30pm today to pick up your passport…", + "alt_text": "status update text example" }, ] %} {% for item in card_contents %} -
-

{{item.card_heading}}

-

{{item.p_text}}

- +
+
+
+

{{item.card_heading}}

+

{{item.p_text}}

+
+ {% if item.image_src %} + {{ item.alt_text }} + {% endif %} +
{% endfor %}