blob: 417fc0c7879bef088cc25e2f5796e268d28e26a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "layout.html" %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<div class="container">
<div class="well">
<h1>Internal Server Error</h1>
<p>Something bad just happened! Go to the <a href="{{ url_for('home') }}">home page</a>.</p>
</div>
</div>
{% endblock %}
|