mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-25 13:44:05 +08:00
Extracted not found text into its own simple blade file
Related/intended for #2796
This commit is contained in:
parent
b5caaa73b7
commit
58117bcf2d
@ -6,9 +6,11 @@
|
||||
<div class="card mb-xl px-l pb-l pt-l">
|
||||
<div class="grid half v-center">
|
||||
<div>
|
||||
<h1 class="list-heading">{{ $message ?? trans('errors.404_page_not_found') }}</h1>
|
||||
<h5>{{ $subtitle ?? trans('errors.sorry_page_not_found') }}</h5>
|
||||
<p>{{ $details ?? trans('errors.sorry_page_not_found_permission_warning') }}</p>
|
||||
@include('errors.parts.not-found-text', [
|
||||
'title' => $message ?? trans('errors.404_page_not_found'),
|
||||
'subtitle' => $subtitle ?? trans('errors.sorry_page_not_found'),
|
||||
'details' => $details ?? trans('errors.sorry_page_not_found_permission_warning'),
|
||||
])
|
||||
</div>
|
||||
<div class="text-right">
|
||||
@if(!signedInUser())
|
||||
|
5
resources/views/errors/parts/not-found-text.blade.php
Normal file
5
resources/views/errors/parts/not-found-text.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
{{--The below text may be dynamic based upon language and scenario.--}}
|
||||
{{--It's safer to add new text sections here rather than altering existing ones.--}}
|
||||
<h1 class="list-heading">{{ $title }}</h1>
|
||||
<h5>{{ $subtitle }}</h5>
|
||||
<p>{{ $details }}</p>
|
Loading…
x
Reference in New Issue
Block a user