@extends('base') @section('content')

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

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

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


{{ trans('entities.pages_popular') }}

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

{{ trans('entities.books_popular') }}

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

{{ trans('entities.chapters_popular') }}

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