12 lines
511 B
HTML
12 lines
511 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %} | 404{% endblock %}
|
|
{% block extrastyle %}<link rel="stylesheet" href="{{ STATIC_URL }}css/error.css" type="text/css" media="screen" />{% endblock %}
|
|
|
|
{% block main %}
|
|
<h2>Error</h2>
|
|
<p>I'm sorry, but that page is missing. Instead, here's a picture of a cat. Click him to go back!</p>
|
|
<a href="javascript:history.back()"><img id="error-cat" src="{{ STATIC_URL }}img/404cat.jpg" alt="404 cat" /></a>
|
|
<p>Error code: 404</p>
|
|
{% endblock main %}
|