diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-11 01:29:21 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-11 01:29:21 +0200 |
commit | b0397e50b422fd99fc6903be2dd598a8280d1381 (patch) | |
tree | ae5a6c8702646b6897f86089fe118a07e5ada45e /templates/not_found.html.ep | |
parent | fc4cfade14bfaa053db48f6896f32d0340b65854 (diff) |
add custom not_found and exception templates
Diffstat (limited to 'templates/not_found.html.ep')
-rw-r--r-- | templates/not_found.html.ep | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/not_found.html.ep b/templates/not_found.html.ep new file mode 100644 index 0000000..de0d533 --- /dev/null +++ b/templates/not_found.html.ep @@ -0,0 +1,10 @@ +<div class="row"> + <div class="col s12"> + <div class="card red darken-4"> + <div class="card-content white-text"> + <span class="card-title">404 Not Found</span> + <p>Diese Seite gibt es hier nicht.</p> + </div> + </div> + </div> +</div> |