aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/templates/error
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/templates/error')
-rw-r--r--src/main/resources/templates/error/404.ftlh12
-rw-r--r--src/main/resources/templates/error/500.ftlh12
2 files changed, 24 insertions, 0 deletions
diff --git a/src/main/resources/templates/error/404.ftlh b/src/main/resources/templates/error/404.ftlh
new file mode 100644
index 0000000..3237d4d
--- /dev/null
+++ b/src/main/resources/templates/error/404.ftlh
@@ -0,0 +1,12 @@
+<html>
+ <head>
+ <title>404</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link href="/stylesheets/style.css" media="screen" rel="stylesheet" type="text/css" />
+ </head>
+ <body>
+ You step in the stream<br/>
+ But the water has moved on<br/>
+ This page was not found
+ </body>
+</html>
diff --git a/src/main/resources/templates/error/500.ftlh b/src/main/resources/templates/error/500.ftlh
new file mode 100644
index 0000000..a8d7693
--- /dev/null
+++ b/src/main/resources/templates/error/500.ftlh
@@ -0,0 +1,12 @@
+<html>
+ <head>
+ <title>500</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link href="/stylesheets/style.css" media="screen" rel="stylesheet" type="text/css" />
+ </head>
+ <body>
+ To have no errors<br/>
+ Would be life without meaning<br/>
+ No struggle, no joy
+ </body>
+</html>