mirror of
https://github.com/umap-project/umap.git
synced 2025-05-02 12:52:22 +02:00
10 lines
267 B
HTML
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 %}
|