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

19 lines
568 B
PHP
Raw Normal View History

@extends('tri-layout')
2019-04-06 16:31:59 +00:00
@section('body')
@include('shelves.list', ['shelves' => $shelves, 'view' => $view])
@stop
@section('left')
@include('common.home-sidebar')
@stop
@section('right')
<div class="actions mb-xl">
<h5>{{ trans('common.actions') }}</h5>
<div class="icon-list text-primary">
@include('partials.view-toggle', ['view' => $view, 'type' => 'shelf'])
@include('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
2019-04-06 16:31:59 +00:00
</div>
</div>
@stop