2017-08-26 09:53:23 -04:00
|
|
|
@extends('simple-layout')
|
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>
|
|
|
|
<h1 class="list-heading">{{ $message ?? trans('errors.404_page_not_found') }}</h1>
|
|
|
|
<h5>{{ trans('errors.sorry_page_not_found') }}</h5>
|
2020-03-14 14:29:31 -04:00
|
|
|
<p>{{ trans('errors.sorry_page_not_found_permission_warning') }}</p>
|
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">
|
2019-10-05 07:55:01 -04:00
|
|
|
@include('partials.entity-list', ['entities' => Views::getPopular(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">
|
2019-10-05 07:55:01 -04:00
|
|
|
@include('partials.entity-list', ['entities' => Views::getPopular(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">
|
2019-10-05 07:55:01 -04:00
|
|
|
@include('partials.entity-list', ['entities' => Views::getPopular(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
|