mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 11:51:05 -05:00
Uses some graphic design to communicate what Notify is: - for sending messages to lots of people - messages can be personalised
17 lines
388 B
HTML
17 lines
388 B
HTML
{% macro phone(recipient, message) %}
|
|
<div class="phone">
|
|
<div class="phone-speaker"></div>
|
|
<div class="phone-screen">
|
|
<h2 class="phone-recipient">
|
|
<span class="visually-hidden">
|
|
Example text message
|
|
</span>
|
|
To: {{recipient}}
|
|
</h2>
|
|
<div class="phone-sms">
|
|
{{ message }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|