blob: 1fa6acc9875a623deec7cb1129482bff7d4a2043 (
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="jumbotron">
<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 %}
|