umap/umap/templates/404.html
2024-12-23 12:29:35 -05:00

10 lines
267 B
HTML

{% extends "40x.html" %}
{% load i18n static %}
{% block content %}
<div class="content-40x content-404">
<h1>{% trans "404 Page Not Found" %}</h1>
<p><a href="{% url 'home' %}">{% trans "← Go to the homepage" %}</a></p>
</div>
{% endblock content %}