1 @extends('simple-layout')
4 <div class="container">
9 <h3>@icon('danger') {{ $message or trans('errors.404_page_not_found') }}</h3>
11 <h5>{{ trans('errors.sorry_page_not_found') }}</h5>
12 <p><a href="{{ baseUrl('/') }}" class="button outline">{{ trans('errors.return_home') }}</a></p>
16 @if (setting('app-public') || !user()->isDefault())
18 <div class="col-md-4">
20 <h3 class="text-muted">@icon('page') {{ trans('entities.pages_popular') }}</h3>
21 @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Entities\Page::class]), 'style' => 'compact'])
24 <div class="col-md-4">
26 <h3 class="text-muted">@icon('book') {{ trans('entities.books_popular') }}</h3>
27 @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Entities\Book::class]), 'style' => 'compact'])
30 <div class="col-md-4">
32 <h3 class="text-muted">@icon('chapter') {{ trans('entities.chapters_popular') }}</h3>
33 @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Entities\Chapter::class]), 'style' => 'compact'])