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