umap/umap/templates/404.html
2023-06-20 10:00:02 -04:00

15 lines
381 B
HTML

{% extends "base.html" %}
{% load i18n static %}
{% block content %}
<div class="content404">
<a href="{% url "home" %}"
title="{% trans "Take me to the home page" %}">
<h1>
4
<img alt="0" width="128px" height="128px" src="{% static "umap/img/logo.svg" %}">
4
</h1>
<h2>Not Found</h2>
</a>
</div>
{% endblock content %}