diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/exception.html.ep | 16 | ||||
-rw-r--r-- | templates/main.html.ep | 8 | ||||
-rw-r--r-- | templates/not_found.html.ep | 14 |
3 files changed, 17 insertions, 21 deletions
diff --git a/templates/exception.html.ep b/templates/exception.html.ep index cbbc963..9e11232 100644 --- a/templates/exception.html.ep +++ b/templates/exception.html.ep @@ -8,20 +8,20 @@ </head> <body> -<div class="error">500 Internal Server Error</div> -<div> -<pre> -An error occured while processing your request. +<div class="container"> +<div class="error"> +<strong>500 Internal Server Error:</strong> +An error occured while processing your request.<br/> +<pre> ----------[Debug start]---------- %= $exception->message Stash: %= dumper $snapshot ----------[Debug end]---------- </pre> -</div> -<div> -<a href="/">return to main page</a> -</div> +<a href="/">Return to main page</a> +</div> <!-- error --> +</div> <!-- container --> </body> </html> diff --git a/templates/main.html.ep b/templates/main.html.ep index b6cccd2..3e8f2ab 100644 --- a/templates/main.html.ep +++ b/templates/main.html.ep @@ -13,12 +13,10 @@ % if ($stop) { % if ($errstr) { <div class="container"> -<div class="error">Received an error from the backend service:</div> -<div> -<pre> +<div class="error"> +<strong>Received an error from the backend service:</strong> %= $errstr -</pre> -</div> +</div><!-- error --> </div><!-- container --> % } % elsif ($frontend eq 'png') { diff --git a/templates/not_found.html.ep b/templates/not_found.html.ep index 35ab355..e995b3c 100644 --- a/templates/not_found.html.ep +++ b/templates/not_found.html.ep @@ -8,14 +8,12 @@ </head> <body> -<div class="error">404 Not Found</div> -<div> -<pre> +<div class="container"> +<div class="error"> +<strong>404 Not Found:</strong> The requested URL does not exist and does not map to a public transit station. -</pre> -</div> -<div> -<a href="/">return to main page</a> -</div> +<a href="/">Return to main page</a> +</div> <!-- error --> +</div> <!-- container --> </body> </html> |