BookStack/resources/views/pages/revision.blade.php
Dan Brown d886c6a32e
Removed old ng tags, Fixed header spacing
Also prevent pointer error on custom home page
2018-05-28 10:33:38 +01:00

30 lines
642 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">
@include('pages.page-display')
</div>
</div>
</div>
</div>
@stop
@section('scripts')
<script>
setupPageShow(null);
</script>
@stop