diff --git a/web/public/sass/main.scss b/web/public/sass/main.scss index 0d25a89..a2806bf 100644 --- a/web/public/sass/main.scss +++ b/web/public/sass/main.scss @@ -3,6 +3,19 @@ body { background: lighten(#2FA4E7, 45%); } +.error-page { + margin-top: 100px; + overflow: visible; + + #logo { + margin-top: -100px; + } + + h2 { + font-size: 450%; + } +} + header { margin-top: 20px; diff --git a/web/templates/exception.production.html.ep b/web/templates/exception.production.html.ep new file mode 100644 index 0000000..1c8960f --- /dev/null +++ b/web/templates/exception.production.html.ep @@ -0,0 +1,12 @@ +% layout 'default'; +% title '500 - Server Error'; + +
+ +

500—Server Error

+

+ Something went terribly wrong and we were not able to generate a response. + Please notify the Perl 6 community if this issue persists. +

+
\ No newline at end of file diff --git a/web/templates/not_found.production.html.ep b/web/templates/not_found.production.html.ep new file mode 100644 index 0000000..08fdf74 --- /dev/null +++ b/web/templates/not_found.production.html.ep @@ -0,0 +1,11 @@ +% layout 'default'; +% title '404 - Page Not Found'; + +
+ +

404—Page Not Found

+

+ Sorry, but the page you tried to reach was either moved or deleted. +

+
\ No newline at end of file