15 lines
291 B
HTML
15 lines
291 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}Internal Server Error{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Internal Server Error</h2>
|
|
|
|
<p>
|
|
The server encountered an internal error or misconfiguration
|
|
and was unable to complete your request.
|
|
</p>
|
|
|
|
{% endblock %}
|