mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-06 08:58:44 -04:00
- Deleted /stylesheets folder - Removed sass build from gulpfile - Changed gov links to usa links - Changed other govuk styles, like breadcrumbs - Changed name of uk_components file to us_components - Fixed a few tests that broke on account of the changes
21 lines
804 B
HTML
21 lines
804 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% block per_page_title %}Sorry, there’s a problem with the service{% endblock %}
|
||
{% block maincolumn_content %}
|
||
<div class="govuk-grid-row">
|
||
<div class="govuk-grid-column-two-thirds">
|
||
<h1 class="heading-large">
|
||
Sorry, there’s a problem with Notify.gov
|
||
</h1>
|
||
<p class="govuk-body">
|
||
Try again later.
|
||
</p>
|
||
<!-- <p class="govuk-body">
|
||
You can check our <a class="usa-link" href="https://status.notifications.service.gov.uk">system status</a> page to see if there are any known issues.
|
||
</p> -->
|
||
<p class="govuk-body">
|
||
To report a problem, please email <a class="usa-link" href="mailto:notify-support@gsa.gov">notify-support@gsa.gov</a>.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|