summaryrefslogtreecommitdiff
path: root/resources/views/errors/404.twig
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/errors/404.twig')
-rw-r--r--resources/views/errors/404.twig18
1 files changed, 18 insertions, 0 deletions
diff --git a/resources/views/errors/404.twig b/resources/views/errors/404.twig
new file mode 100644
index 00000000..6eb9104e
--- /dev/null
+++ b/resources/views/errors/404.twig
@@ -0,0 +1,18 @@
+{% extends "errors/default.twig" %}
+
+{% block title %}{{ __("Page not found") }}{% endblock %}
+
+{% block content_container %}
+ <div class="row">
+ <div class="col-sm-6 col-sm-offset-3 error-big">
+ <h2>
+ 4<span class="pulse">:</span>{{ status|slice(1, 2) }}
+ <small>{{ __("No sleep found") }}</small>
+ </h2>
+
+ {% block content_text %}
+ {{ content }}
+ {% endblock %}
+ </div>
+ </div>
+{% endblock %}