mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-13 08:21:47 +00:00
Improved styling of the 500 error page
This commit is contained in:
parent
e15fcf5b50
commit
5ce3b861a9
1 changed files with 7 additions and 5 deletions
|
@ -2,14 +2,16 @@
|
|||
|
||||
@section('content')
|
||||
|
||||
<div class="container">
|
||||
<div class="card">
|
||||
<h3 class="text-muted">{{ trans('errors.error_occurred') }}</h3>
|
||||
<div class="container small py-xl">
|
||||
|
||||
<main class="card content-wrap auto-height">
|
||||
<div class="body">
|
||||
<h5>{{ $message ?? 'An unknown error occurred' }}</h5>
|
||||
<h3>{{ trans('errors.error_occurred') }}</h3>
|
||||
<h5 class="mb-m">{{ $message ?? 'An unknown error occurred' }}</h5>
|
||||
<p><a href="{{ url('/') }}" class="button outline">{{ trans('errors.return_home') }}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</div>
|
||||
|
||||
@stop
|
Loading…
Add table
Reference in a new issue