15 lines
381 B
HTML
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 %}
|