Files
notifications-admin/app/templates/views/pricing.html
Chris Hill-Scott 135ff1ee77 Include service name in page <title>
In pages specific to a service (e.g. dashboard and sub pages) the title
needs to distinguish which service it applies to. This is mainly to give
context to screen reader users who could be managing multiple services.

Implementing this uses template inheritance:

`page_title` includes `per_page_title` includes `service_page_title`

‘GOV.UK Notify’ is inserted into every page title.

Pages that set `service_page_title` get the service name inserted too.
2017-02-14 11:53:53 +00:00

52 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withoutnav_template.html" %}
{% block per_page_title %}
Pricing
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">Pricing</h1>
<h2 class="heading-medium">Emails</h2>
<p>
Sending email through GOV.UK&nbsp;Notify is completely free.
</p>
<h2 class="heading-medium">Text messages</h2>
<ul class="list list-bullet">
<li>Free allowance: 250,000 text messages per service, per financial year</li>
<li>If your messages are long, they will count as 2 or 3 text messages, depending on length:
<ul class="list list-bullet">
<li>Up to 160 characters = 1 text message</li>
<li>Up to 306 characters = 2 text messages</li>
<li>Up to 459 characters = 3 text messages</li>
</ul></li>
<li>Standard text message rate: 1.65 pence + VAT</li>
</ul>
<p>
We simply charge you the costs we pay to our delivery partners.
We dont mark these costs up in any way.
</p>
<h2 class="heading-medium">No monthly charge or setup fee</h2>
<p>
There are no other charges for using Notify. Theres no monthly charge
or setup fee.
</p>
<p>
The Government Digital Service is funding the development and running
of Notify. Were also covering the cost of the free emails and text messages.
</p>
</div>
</div>
{% endblock %}