]> BookStack Code Mirror - bookstack/blob - resources/views/common/home-custom.blade.php
Update components.php
[bookstack] / resources / views / common / home-custom.blade.php
1 @extends('tri-layout')
2
3 @section('body')
4     <div class="mt-m">
5         <main class="content-wrap card">
6             <div class="page-content" page-display="{{ $customHomepage->id }}">
7                 @include('pages.page-display', ['page' => $customHomepage])
8             </div>
9         </main>
10     </div>
11 @stop
12
13 @section('left')
14     @include('common.home-sidebar')
15 @stop
16
17 @section('right')
18     <div class="actions mb-xl">
19         <h5>{{ trans('common.actions') }}</h5>
20         <div class="icon-list text-primary">
21             @include('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
22         </div>
23     </div>
24 @stop