summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-29 13:58:50 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-29 23:46:32 +0200
commita2c47304d8230f1937c2a4f019aba89fa74203bc (patch)
tree7c981fc1577f865600a22b655349587f188c7410 /templates
parent427315195bdd379a0207fc9b2aaf69a5b5b86c79 (diff)
Added generic error pages
Diffstat (limited to 'templates')
-rw-r--r--templates/errors/default.twig7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/errors/default.twig b/templates/errors/default.twig
new file mode 100644
index 00000000..a04afc4e
--- /dev/null
+++ b/templates/errors/default.twig
@@ -0,0 +1,7 @@
+{% extends "layouts/app.twig" %}
+
+{% block title %}Error {{ status }}{% endblock %}
+
+{% block content %}
+ <div class="alert alert-info">{{ content }}</div>
+{% endblock %}