12 lines
543 B
HTML
12 lines
543 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %} | 500{% endblock %}
|
|
{% block extrastyle %}<link rel="stylesheet" href="{{ url_for('static', filename='css/error.css' }}" type="text/css" media="screen" />{% endblock %}
|
|
|
|
{% block main %}
|
|
<h2>Error</h2>
|
|
<p>We messed up! There's been an internal server error. No worries, click this cat to back!</p>
|
|
<a href="javascript:history.back()"><img id="error-cat" src="{{ url_for('static', filename='img/404cat.jpg' }}" alt="404 cat" /></a>
|
|
<p>Error code: 500</p>
|
|
{% endblock main %}
|