9 lines
208 B
HTML
9 lines
208 B
HTML
{% extends 'layouts/app.html' %}
|
|
|
|
{% block title %}Error 500{% endblock %}
|
|
{% block heading %}<h2>Error 500</h2>{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>Add a soothing error 500 message here.</p>
|
|
{% endblock %}
|