14 lines
303 B
HTML
14 lines
303 B
HTML
{% block title %}Error{% endblock %}
|
|
|
|
{% block header %}
|
|
<h2 class="text-danger">
|
|
<i class="icon-exclamation-sign"></i> Oops, a server error has occured
|
|
</h2>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- no-sidebar -->
|
|
<div class="error-content">
|
|
<pre><code>{{ error }}</code></pre>
|
|
</div>
|
|
{% endblock %}
|