You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
277 B
10 lines
277 B
2 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}404 - that's an error{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>404!</h1>
|
||
|
<p>uh oh, that page was not found. here's a kitten instead.</p>
|
||
|
<p>todo: pic of a kitten</p>
|
||
|
<p>now, head back to the <a href="/">main page</a></p>
|
||
|
{% endblock %}
|