6 <div class="container">
9 <h1>{{ $message or trans('errors.404_page_not_found') }}</h1>
10 <p>{{ trans('errors.sorry_page_not_found') }}</p>
11 <p><a href="{{ baseUrl('/') }}" class="button">{{ trans('errors.return_home') }}</a></p>
16 <div class="col-md-4">
17 <h3 class="text-muted">{{ trans('entities.pages_popular') }}</h3>
18 @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Page::class]), 'style' => 'compact'])
20 <div class="col-md-4">
21 <h3 class="text-muted">{{ trans('entities.books_popular') }}</h3>
22 @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Book::class]), 'style' => 'compact'])
24 <div class="col-md-4">
25 <h3 class="text-muted">{{ trans('entities.chapters_popular') }}</h3>
26 @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Chapter::class]), 'style' => 'compact'])