mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
22 lines
408 B
PHP
22 lines
408 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
|
|
<div class="container" ng-non-bindable>
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<div class="page-content anim fadeIn">
|
|
@include('pages.page-display')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('scripts')
|
|
<script>
|
|
setupPageShow(null);
|
|
</script>
|
|
@stop |