generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path503.html
34 lines (30 loc) · 1.88 KB
/
503.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% block pageTitle %}{% trans %}Sorry, the service is unavailable{% endtrans %} – {{ config.SERVICE_NAME }} – GOV.UK{% endblock %}
{% set mainClasses = "govuk-main-wrapper--l" %}
{% block content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<h1 class="govuk-heading-l">{% trans %}Sorry, the service is unavailable{% endtrans%}</h1>
<p class="govuk-body">{% trans %}The service will be available again soon - try in the next hour.{% endtrans%}</p>
<p class="govuk-body">{% trans %}If you already started using the service, your answers will not be saved.{% endtrans%}</p>
<h2 class="govuk-heading-m">{% trans %}If you need urgent help{% endtrans%}</h2>
<p class="govuk-body">{% trans %}Contact the Civil Legal Advice (CLA) helpline.{% endtrans%}</p>
<p class="govuk-body">
{% trans %}Telephone{% endtrans%}: 0345 345 4345 <br />
<a class="govuk-link--no-underline" href="https://www.relayuk.bt.com/">{% trans %}Relay UK{% endtrans%}</a> {% trans %}(textphone and app): 18001 then 0345 345 4345{% endtrans%}
</p>
<p class="govuk-body">
{% trans %}Monday to Friday, 9am to 8pm{% endtrans%} <br />
{% trans %}Saturday, 9am to 12:30pm{% endtrans%} <br />
<a class="govuk-link--no-underline" href="https://www.gov.uk/call-charges">{% trans %}Find out about call charges{% endtrans%}</a>
</p>
<p class="govuk-body">
{% trans %}If you’re worried about the cost of a call{% endtrans%}:
<ul class="govuk-list govuk-list--bullet">
<li>{% trans %}ask the helpline to call you back, or{% endtrans%}</li>
<li>{% trans %}text ‘legalaid’ and your name to 80010 for a call back within 24 hours{% endtrans %}</li>
</ul>
</p>
</div>
</div>
{% endblock %}