@extends('simple-layout') @section('content')

 

@icon('danger') {{ $message or trans('errors.404_page_not_found') }}

{{ trans('errors.sorry_page_not_found') }}

{{ trans('errors.return_home') }}

@if (setting('app-public') || !user()->isDefault())

@icon('page') {{ trans('entities.pages_popular') }}

@include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Entities\Page::class]), 'style' => 'compact'])

@icon('book') {{ trans('entities.books_popular') }}

@include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Entities\Book::class]), 'style' => 'compact'])

@icon('chapter') {{ trans('entities.chapters_popular') }}

@include('partials.entity-list', ['entities' => Views::getPopular(10, 0, [\BookStack\Entities\Chapter::class]), 'style' => 'compact'])
@endif
@stop