mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-19 11:09:38 +00:00
parent
13c0386e84
commit
35f35bcba5
4 changed files with 42 additions and 54 deletions
resources/views
|
@ -1,7 +1,5 @@
|
|||
@extends('tri-layout')
|
||||
|
||||
@section('container-classes', 'mt-xl')
|
||||
|
||||
@section('body')
|
||||
@include('books.list', ['books' => $books, 'view' => $view])
|
||||
@stop
|
||||
|
|
|
@ -1,23 +1,19 @@
|
|||
@extends('simple-layout')
|
||||
@extends('tri-layout')
|
||||
|
||||
@section('body')
|
||||
<div class="container mt-m">
|
||||
<div class="grid right-focus gap-xl">
|
||||
<div>
|
||||
@include('books.list', ['books' => $books, 'view' => $view])
|
||||
@stop
|
||||
|
||||
<div class="actions mb-xl">
|
||||
<h5>{{ trans('common.actions') }}</h5>
|
||||
<div class="icon-list text-primary">
|
||||
@include('partials.view-toggle', ['view' => $view, 'type' => 'book'])
|
||||
@include('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
|
||||
</div>
|
||||
</div>
|
||||
@section('left')
|
||||
@include('common.home-sidebar')
|
||||
@stop
|
||||
|
||||
@include('common.home-sidebar')
|
||||
</div>
|
||||
<div>
|
||||
@include('books.list', ['books' => $books, 'view' => $view])
|
||||
</div>
|
||||
@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' => 'book'])
|
||||
@include('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
|
@ -1,26 +1,24 @@
|
|||
@extends('simple-layout')
|
||||
@extends('tri-layout')
|
||||
|
||||
@section('body')
|
||||
<div class="container mt-l">
|
||||
<div class="grid right-focus gap-xl">
|
||||
<div>
|
||||
|
||||
<div class="actions mb-xl">
|
||||
<h5>{{ trans('common.actions') }}</h5>
|
||||
<div class="icon-list text-primary">
|
||||
@include('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('common.home-sidebar')
|
||||
</div>
|
||||
<div>
|
||||
<div class="content-wrap card">
|
||||
<div class="page-content" page-display="{{ $customHomepage->id }}">
|
||||
@include('pages.page-display', ['page' => $customHomepage])
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-m">
|
||||
<div class="content-wrap card">
|
||||
<div class="page-content" page-display="{{ $customHomepage->id }}">
|
||||
@include('pages.page-display', ['page' => $customHomepage])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@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('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
|
@ -1,23 +1,19 @@
|
|||
@extends('simple-layout')
|
||||
@extends('tri-layout')
|
||||
|
||||
@section('body')
|
||||
<div class="container mt-m">
|
||||
<div class="grid right-focus gap-xl">
|
||||
<div>
|
||||
@include('shelves.list', ['shelves' => $shelves, 'view' => $view])
|
||||
@stop
|
||||
|
||||
<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'])
|
||||
</div>
|
||||
</div>
|
||||
@section('left')
|
||||
@include('common.home-sidebar')
|
||||
@stop
|
||||
|
||||
@include('common.home-sidebar')
|
||||
</div>
|
||||
<div>
|
||||
@include('shelves.list', ['shelves' => $shelves, 'view' => $view])
|
||||
</div>
|
||||
@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'])
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
Loading…
Add table
Reference in a new issue