From d1dea7fecdaf3279d47e13d984ad91af71a4b2ef Mon Sep 17 00:00:00 2001 From: igorkorenfeld Date: Mon, 8 May 2023 11:54:31 -0400 Subject: [PATCH] Add 404 page template --- src/registrar/templates/404.html | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/src/registrar/templates/404.html b/src/registrar/templates/404.html index f715e0fa9..c6bf6f5a8 100644 --- a/src/registrar/templates/404.html +++ b/src/registrar/templates/404.html @@ -1,15 +1,31 @@ - {% extends "base.html" %} -{% load i18n %} +{% load i18n static %} {% block title %}{% translate "Page not found" %}{% endblock %} {% block content %}
+
+
+

+ {% translate "We couldn’t find that page" %} +

+

+ {% translate "Status 404" %} +

-

{% translate "Page not found" %}

+

Try going to the homepage. If you can’t find what you’re looking for, contact us. +

+
+ +
+ +
+
-

{% translate "The requested page could not be found." %}

{% endblock %}