summaryrefslogtreecommitdiff
path: root/templates/error.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'templates/error.html.ep')
-rw-r--r--templates/error.html.ep31
1 files changed, 0 insertions, 31 deletions
diff --git a/templates/error.html.ep b/templates/error.html.ep
deleted file mode 100644
index 3a1d5e3..0000000
--- a/templates/error.html.ep
+++ /dev/null
@@ -1,31 +0,0 @@
-<!doctype html>
-
-<html>
-
- <head>
- <title>Error</title>
- </head>
-
- <body>
- <h1>Error</h1>
- <p class=center>
-% if (my $msg = stash 'error') {
- %= $msg
-% }
-% else {
- Uwu :(
-% }
- </p>
-
-% if (my $see_other = stash 'links') {
- See:
- <nav>
- % for (@$see_other) {
- %= link_to $_ => $_
- <br>
- % }
- </nav>
-% }
- </body>
-
-</html>