8 lines
244 B
HTML
8 lines
244 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Page not found{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="center">Page not found</h1>
|
|
<p>This page has not been found. Please <a href="{% url "index" %}">return to the home</a>.</p>
|
|
{% endblock %}
|