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