-@extends('simple-layout')
+@extends('layouts.simple')
@section('body')
- <div class="container pt-xl">
+ <div class="container medium pt-xl">
<div class="grid right-focus reverse-collapse">
<div>
<section id="recent-user-activity" class="mb-xl">
<h5>{{ trans('entities.recent_activity') }}</h5>
- @include('partials.activity-list', ['activity' => $activity])
+ @include('common.activity-list', ['activity' => $activity])
</section>
</div>
@endif
</h2>
@if (count($recentlyCreated['pages']) > 0)
- @include('partials.entity-list', ['entities' => $recentlyCreated['pages'], 'showPath' => true])
+ @include('entities.list', ['entities' => $recentlyCreated['pages'], 'showPath' => true])
@else
<p class="text-muted">{{ trans('entities.profile_not_created_pages', ['userName' => $user->name]) }}</p>
@endif
@endif
</h2>
@if (count($recentlyCreated['chapters']) > 0)
- @include('partials.entity-list', ['entities' => $recentlyCreated['chapters'], 'showPath' => true])
+ @include('entities.list', ['entities' => $recentlyCreated['chapters'], 'showPath' => true])
@else
<p class="text-muted">{{ trans('entities.profile_not_created_chapters', ['userName' => $user->name]) }}</p>
@endif
@endif
</h2>
@if (count($recentlyCreated['books']) > 0)
- @include('partials.entity-list', ['entities' => $recentlyCreated['books'], 'showPath' => true])
+ @include('entities.list', ['entities' => $recentlyCreated['books'], 'showPath' => true])
@else
<p class="text-muted">{{ trans('entities.profile_not_created_books', ['userName' => $user->name]) }}</p>
@endif
@endif
</h2>
@if (count($recentlyCreated['shelves']) > 0)
- @include('partials.entity-list', ['entities' => $recentlyCreated['shelves'], 'showPath' => true])
+ @include('entities.list', ['entities' => $recentlyCreated['shelves'], 'showPath' => true])
@else
<p class="text-muted">{{ trans('entities.profile_not_created_shelves', ['userName' => $user->name]) }}</p>
@endif