Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{% extends "layouts/page.njk" %}

{% set pageName = "Sorry, the service is unavailable" %}

{% block header %}
{{ header({
service: {
href: baseUrl,
text: "Service name"
}
}) }}
{% endblock %}

{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">

<h1 class="nhsuk-heading-l">{{ pageName }}</h1>

<p>You will be able to use the service from 9am on Monday 14 December 2025.</p>

<p>Contact the hospital if you need to cancel an appointment.</p>

</div>
</div>
{% endblock %}

{% block footer %}
{{ footer() }}
{% endblock %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{% extends "layouts/page.njk" %}

{% set pageName = "Sorry, the service is unavailable" %}

{% block header %}
{{ header({
service: {
href: baseUrl,
text: "Service name"
}
}) }}
{% endblock %}

{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">

<h1 class="nhsuk-heading-l">{{ pageName }}</h1>

<p>The service is experiencing a technical issue. It will be fixed as soon as possible.</p>

<p>Progress updates will be added to this page.</p>

{% set insetTextHtml %}
<h2 class="nhsuk-heading-s">1:11pm, Thursday 26 Februrary 2026</h2>
<p>We have identified the underlying cause of the issue and are working to fix it.</p>
{% endset %}

{{ insetText({
html: insetTextHtml
}) }}

</div>
</div>
{% endblock %}

{% block footer %}
{{ footer() }}
{% endblock %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{% extends "layouts/page.njk" %}

{% set pageName = "Sorry, the service is unavailable" %}

{% block header %}
{{ header({
service: {
href: baseUrl,
text: "Service name"
}
}) }}
{% endblock %}

{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">

<h1 class="nhsuk-heading-l">{{ pageName }}</h1>

<p>Contact the hospital if you need to cancel an appointment.</p>

</div>
</div>
{% endblock %}

{% block footer %}
{{ footer() }}
{% endblock %}
3 changes: 3 additions & 0 deletions packages/nhsuk-frontend-review/src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@
<h3 class="nhsuk-heading-m">Full pages</h3>

<ul class="nhsuk-list">
<li><a href="examples/full-page/service-unavailable/">Service unavailable</a></li>
<li><a href="examples/full-page/service-unavailable-planned/">Service unavailable (planned)</a></li>
<li><a href="examples/full-page/service-unavailable-updates/">Service unavailable (updates)</a></li>
<li><a href="examples/full-page/update-your-account-details/">Update your account details</a></li>
</ul>

Expand Down