mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
30 lines
636 B
PHP
30 lines
636 B
PHP
@extends('sidebar-layout')
|
|
|
|
@section('sidebar')
|
|
<div class="card">
|
|
<h3>@icon('info') {{ trans('common.details') }}</h3>
|
|
<div class="body">
|
|
@include('partials.entity-meta', ['entity' => $revision])
|
|
</div>
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="container" ng-non-bindable>
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<div class="page-content">
|
|
@include('pages.page-display')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('scripts')
|
|
<script>
|
|
setupPageShow(null);
|
|
</script>
|
|
@stop |