BookStack/resources/views/common/home-shelves.blade.php

26 lines
944 B
PHP
Raw Normal View History

2019-04-06 16:31:59 +00:00
@extends('simple-layout')
2019-04-06 16:31:59 +00:00
@section('body')
<div class="container mt-m">
<div class="grid right-focus gap-xl">
<div>
2019-04-06 16:31:59 +00:00
<div class="actions mb-xl">
<h5>{{ trans('common.actions') }}</h5>
<div class="icon-list text-primary">
@include('partials.view-toggle', ['view' => $view, 'type' => 'shelf'])
<a expand-toggle=".entity-list.compact .entity-item-snippet" class="icon-list-item">
<span>@icon('expand-text')</span>
<span>{{ trans('common.toggle_details') }}</span>
</a>
</div>
</div>
2019-04-06 16:31:59 +00:00
@include('common.home-sidebar')
</div>
<div>
@include('shelves.list', ['shelves' => $shelves, 'view' => $view])
</div>
</div>
</div>
@stop