13 lines
185 B
HTML
13 lines
185 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1>
|
|
Page not found
|
|
</h1>
|
|
</div>
|
|
|
|
<p>This is not the web page you are looking for.</p>
|
|
|
|
{% endblock %}
|