]> BookStack Code Mirror - bookstack/blob - resources/views/errors/404.blade.php
Merge branch 'master' of https://github.com/BookStackApp/BookStack
[bookstack] / resources / views / errors / 404.blade.php
1 @extends('base')
2
3 @section('content')
4
5
6 <div class="container">
7
8
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>
12
13     <hr>
14
15     <div class="row">
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'])
19         </div>
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'])
23         </div>
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'])
27         </div>
28     </div>
29 </div>
30
31 @stop