diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_error.html.ep | 4 | ||||
-rw-r--r-- | templates/layouts/app.html.ep | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/_error.html.ep b/templates/_error.html.ep index 4abfb4e..8585f90 100644 --- a/templates/_error.html.ep +++ b/templates/_error.html.ep @@ -1,5 +1,5 @@ <div class="error"><strong>Fehler:</strong> -<pre> +<p style="font-family: Monospace;"> %= $error -</pre> +</p> </div> diff --git a/templates/layouts/app.html.ep b/templates/layouts/app.html.ep index 83c83fa..a897747 100644 --- a/templates/layouts/app.html.ep +++ b/templates/layouts/app.html.ep @@ -101,9 +101,9 @@ <div class="container"> % if (my $error = stash 'error') { <div class="error"><strong>Fehler:</strong> -<pre> +<p> %= $error -</pre> +</p> </div> % } % elsif (stash('stationlist')) { |