summaryrefslogtreecommitdiffstats
path: root/templates/internalerror.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/internalerror.html')
-rw-r--r--templates/internalerror.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/internalerror.html b/templates/internalerror.html
new file mode 100644
index 0000000..9682c14
--- /dev/null
+++ b/templates/internalerror.html
@@ -0,0 +1,15 @@
+{% extends "master.html" %}
+{% block main %}
+<div class="col-sm-12">
+ <h1>500 - Internal Server Error</h1>
+ {% if message: %}
+ <p>{{ message }}</p>
+ {% else %}
+ <p>Ipsilon encountered an unexpected internal error while trying to
+ fulfill your request.</p>
+ {% endif %}
+ <p>Please retry again.</p>
+ <p>If the error persists, contact the server administrator to resolve
+ the problem.</p>
+</div>
+{% endblock %}