2021-08-22 20:15:58 +08:00
|
|
|
@extends('layouts.simple')
|
2015-09-30 04:25:03 +08:00
|
|
|
|
|
|
|
@section('content')
|
2019-04-07 01:36:17 +08:00
|
|
|
<div class="container mt-l">
|
2016-12-03 21:31:54 +08:00
|
|
|
|
2020-03-15 02:29:31 +08:00
|
|
|
<div class="card mb-xl px-l pb-l pt-l">
|
2019-04-07 01:36:17 +08:00
|
|
|
<div class="grid half v-center">
|
|
|
|
<div>
|
2021-06-13 20:53:59 +08:00
|
|
|
@include('errors.parts.not-found-text', [
|
|
|
|
'title' => $message ?? trans('errors.404_page_not_found'),
|
|
|
|
'subtitle' => $subtitle ?? trans('errors.sorry_page_not_found'),
|
|
|
|
'details' => $details ?? trans('errors.sorry_page_not_found_permission_warning'),
|
|
|
|
])
|
2019-04-07 01:36:17 +08:00
|
|
|
</div>
|
|
|
|
<div class="text-right">
|
2020-03-15 02:29:31 +08:00
|
|
|
@if(!signedInUser())
|
|
|
|
<a href="{{ url('/login') }}" class="button outline">{{ trans('auth.log_in') }}</a>
|
|
|
|
@endif
|
2019-08-04 21:26:39 +08:00
|
|
|
<a href="{{ url('/') }}" class="button outline">{{ trans('errors.return_home') }}</a>
|
2019-04-07 01:36:17 +08:00
|
|
|
</div>
|
2017-08-26 21:53:23 +08:00
|
|
|
</div>
|
2019-04-07 01:36:17 +08:00
|
|
|
|
2017-08-26 21:53:23 +08:00
|
|
|
</div>
|
2016-12-03 21:31:54 +08:00
|
|
|
|
2017-02-06 05:19:29 +08:00
|
|
|
@if (setting('app-public') || !user()->isDefault())
|
2019-04-07 01:36:17 +08:00
|
|
|
<div class="grid third gap-xxl">
|
|
|
|
<div>
|
|
|
|
<div class="card mb-xl">
|
2019-05-08 05:10:54 +08:00
|
|
|
<h3 class="card-title">{{ trans('entities.pages_popular') }}</h3>
|
2019-04-07 01:36:17 +08:00
|
|
|
<div class="px-m">
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('entities.list', ['entities' => (new \BookStack\Entities\Queries\Popular)->run(10, 0, ['page']), 'style' => 'compact'])
|
2019-04-07 01:36:17 +08:00
|
|
|
</div>
|
2017-08-26 21:53:23 +08:00
|
|
|
</div>
|
2017-02-06 05:19:29 +08:00
|
|
|
</div>
|
2019-04-07 01:36:17 +08:00
|
|
|
<div>
|
|
|
|
<div class="card mb-xl">
|
2019-05-08 05:10:54 +08:00
|
|
|
<h3 class="card-title">{{ trans('entities.books_popular') }}</h3>
|
2019-04-07 01:36:17 +08:00
|
|
|
<div class="px-m">
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('entities.list', ['entities' => (new \BookStack\Entities\Queries\Popular)->run(10, 0, ['book']), 'style' => 'compact'])
|
2019-04-07 01:36:17 +08:00
|
|
|
</div>
|
2017-08-26 21:53:23 +08:00
|
|
|
</div>
|
2017-02-06 05:19:29 +08:00
|
|
|
</div>
|
2019-04-07 01:36:17 +08:00
|
|
|
<div>
|
|
|
|
<div class="card mb-xl">
|
2019-05-08 05:10:54 +08:00
|
|
|
<h3 class="card-title">{{ trans('entities.chapters_popular') }}</h3>
|
2019-04-07 01:36:17 +08:00
|
|
|
<div class="px-m">
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('entities.list', ['entities' => (new \BookStack\Entities\Queries\Popular)->run(10, 0, ['chapter']), 'style' => 'compact'])
|
2019-04-07 01:36:17 +08:00
|
|
|
</div>
|
2017-08-26 21:53:23 +08:00
|
|
|
</div>
|
2017-02-06 05:19:29 +08:00
|
|
|
</div>
|
2016-12-03 21:31:54 +08:00
|
|
|
</div>
|
2017-02-06 05:19:29 +08:00
|
|
|
@endif
|
2015-12-29 01:19:23 +08:00
|
|
|
</div>
|
2015-09-30 04:25:03 +08:00
|
|
|
|
|
|
|
@stop
|