12 lines
181 B
HTML
12 lines
181 B
HTML
|
{% extends "blarg/views/templates/base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="page-header">
|
||
|
<h2>Not Found</h2>
|
||
|
</div>
|
||
|
|
||
|
<p>That resource could not be found.</p>
|
||
|
|
||
|
{% endblock %}
|