mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 16:43:47 +01:00
13 lines
296 B
HTML
13 lines
296 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Page not found") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ self.title() }}</h1>
|
|
<p>
|
|
{{ _("That page could not be found. The link may be broken, the page may have been deleted, or you may not have access to it.") }}
|
|
</p>
|
|
{% endblock %}
|