* Font-Awesome V3.x to V4.x Font-Awesome V3.x to V4.x * Font Tidy Font Tidy * FA4 Upgrade - Html Js & Json FA4 Upgrade - Html Js & Json * Minor Minor
16 lines
326 B
HTML
16 lines
326 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}Error{% endblock %}
|
|
|
|
{% block header %}
|
|
<h2 class="text-danger">
|
|
<i class="fa fa-exclamation-sign"></i> Oops, a server error has occured
|
|
</h2>
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="error-content">
|
|
<pre><code>{{ error }}</code></pre>
|
|
</div>
|
|
{% endblock %}
|