Make it clearer what Notify is for from homepage

Uses some graphic design to communicate what Notify is:

- for sending messages to lots of people
- messages can be personalised
This commit is contained in:
Chris Hill-Scott
2016-06-03 16:55:59 +01:00
parent d4103767d2
commit 1667996716
6 changed files with 157 additions and 33 deletions

View File

@@ -0,0 +1,16 @@
{% 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 %}