-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from trade-tariff/FPO-326-400-500-pages
FPO-326 add 404 and 500 page
- Loading branch information
Showing
3 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% extends "layout.njk" %} | ||
{% set mainClasses = "govuk-main-wrapper--l" %} | ||
{% block title %}Page not found{% endblock %} | ||
{% block content %} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l">Page not found</h1> | ||
<p class="govuk-body"> | ||
If you typed the web address, check it is correct. | ||
</p> | ||
<p class="govuk-body"> | ||
If you pasted the web address, check you copied the entire address. | ||
</p> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "layout.njk" %} | ||
{% set mainClasses = "govuk-main-wrapper--l" %} | ||
{% block title %}Sorry, there is a problem with the service{% endblock %} | ||
{% block content %} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l">Sorry, there is a problem with the service</h1> | ||
<p class="govuk-body">Try again later.</p> | ||
</div> | ||
</div> | ||
{% endblock %} |