mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 20:18:38 +02:00
Add 404 page template
This commit is contained in:
parent
43c899bf70
commit
d1dea7fecd
1 changed files with 20 additions and 4 deletions
|
@ -1,15 +1,31 @@
|
||||||
|
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% load i18n %}
|
{% load i18n static %}
|
||||||
|
|
||||||
{% block title %}{% translate "Page not found" %}{% endblock %}
|
{% block title %}{% translate "Page not found" %}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<main id="main-content" class="grid-container">
|
<main id="main-content" class="grid-container">
|
||||||
|
<div class="grid-row grid-gap">
|
||||||
|
<div class="tablet:grid-col-6 usa-prose margin-bottom-3">
|
||||||
|
<h1>
|
||||||
|
{% translate "We couldn’t find that page" %}
|
||||||
|
</h1>
|
||||||
|
<h2>
|
||||||
|
{% translate "Status 404" %}
|
||||||
|
</h2>
|
||||||
|
|
||||||
<h1>{% translate "Page not found" %}</h1>
|
<p> Try going to the <a href="/">homepage</a>. If you can’t find what you’re looking for, <a href= "https://federalist-877ab29f-16f6-4f12-961c-96cf064cf070.sites.pages.cloud.gov/site/cisagov/getgov-home/contact/">contact us.</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="tablet:grid-col-4">
|
||||||
|
<img
|
||||||
|
src="{% static 'img/registrar/dotgov_404_illo.svg' %}"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p>{% translate "The requested page could not be found." %}</p>
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue