mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 04:10:57 -05:00
Merge pull request #1815 from alphagov/add-letters-to-product-page
Update product page to talk about letters
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 9.9 KiB |
@@ -95,6 +95,10 @@
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.align-with-big-number-hint {
|
||||
margin-top: $gutter / 0.6;
|
||||
}
|
||||
|
||||
.global-cookie-message {
|
||||
p {
|
||||
@extend %site-width-container;
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
background-image: file-url('product/proposition-illustration.png');
|
||||
background-size: 320px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right -6px top 85px;
|
||||
background-position: right -6px top 100px;
|
||||
|
||||
@include ie-lte(8) {
|
||||
background-image: none;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% extends "fullwidth_template.html" %}
|
||||
|
||||
{% block meta %}
|
||||
<meta name="description" content="GOV.UK Notify lets you send emails and text messages to your users. Try it now if you work in central government, a local authority, or the NHS.">
|
||||
<meta name="description" content="GOV.UK Notify lets you send emails, text messages and letters to your users. Try it now if you work in central government, a local authority, or the NHS.">
|
||||
{% endblock %}
|
||||
|
||||
{% block page_title %}
|
||||
@@ -25,7 +25,7 @@
|
||||
<div class="grid-row">
|
||||
<div class="column-two-thirds">
|
||||
<h1>
|
||||
Send emails and text messages to your users
|
||||
Send emails, text messages and letters to your users
|
||||
</h1>
|
||||
<p>
|
||||
Try GOV.UK Notify now if you work in central government, a local authority, or the NHS.
|
||||
@@ -49,8 +49,8 @@
|
||||
Control your content
|
||||
</h2>
|
||||
<p>
|
||||
You don’t need any technical knowledge to create email and
|
||||
text message templates.
|
||||
You don’t need any technical knowledge to create email,
|
||||
text message or letter templates.
|
||||
</p>
|
||||
</div>
|
||||
<div class="column-half">
|
||||
@@ -147,14 +147,17 @@
|
||||
<div class="column-half">
|
||||
<h3 class="visually-hidden">Text messages</h3>
|
||||
<div class="product-page-big-number">250,000</div>
|
||||
free text messages a year, then
|
||||
1.58 pence per message
|
||||
free text messages a year,<br>
|
||||
then 1.58 pence per message
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-row bottom-gutter">
|
||||
<div class="column-three-quarters">
|
||||
<p>
|
||||
There’s no monthly charge, no setup fee and no procurement process.
|
||||
<div class="column-half">
|
||||
<h3 class="visually-hidden">Letters</h3>
|
||||
<div class="product-page-big-number">30 pence</div>
|
||||
to print and post a one page letter
|
||||
</div>
|
||||
<div class="column-half">
|
||||
<p class="align-with-big-number-hint">
|
||||
There’s no monthly charge, no setup fee and no procurement process.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -11,8 +11,14 @@ def test_non_logged_in_user_can_see_homepage(
|
||||
|
||||
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
||||
|
||||
assert page.select_one('meta[name=description]')['content'].startswith(
|
||||
'GOV.UK Notify lets you send emails and text messages'
|
||||
assert page.h1.text.strip() == (
|
||||
'Send emails, text messages and letters to your users'
|
||||
)
|
||||
|
||||
assert page.select_one('meta[name=description]')['content'].strip() == (
|
||||
'GOV.UK Notify lets you send emails, text messages and letters '
|
||||
'to your users. Try it now if you work in central government, a '
|
||||
'local authority, or the NHS.'
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user