mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a61c9c5e98
- Primarily moved and re-organised view files. - Included readme within views to document the convention. - Fixed some issues with page field select list in previous commit. - Tweaked some route names while going through. - Split some views out further. Closes #2805
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
@extends('layouts.tri')
|
|
|
|
@section('left')
|
|
<div id="revision-details" class="entity-details mb-xl">
|
|
<h5>{{ trans('common.details') }}</h5>
|
|
<div class="body text-small text-muted">
|
|
@include('entities.meta', ['entity' => $revision])
|
|
</div>
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="mb-m print-hidden">
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
|
$page->$book,
|
|
$page->chapter,
|
|
$page,
|
|
$page->getUrl('/revisions') => [
|
|
'text' => trans('entities.pages_revisions'),
|
|
'icon' => 'history',
|
|
],
|
|
$revision->getUrl('/changes') => $diff ? trans('entities.pages_revisions_numbered_changes', ['id' => $revision->id]) : null,
|
|
$revision->getUrl() => !$diff ? trans('entities.pages_revisions_numbered', ['id' => $revision->id]) : null,
|
|
]])
|
|
</div>
|
|
|
|
<main class="card content-wrap">
|
|
<div class="page-content page-revision">
|
|
@include('pages.parts.page-display')
|
|
</div>
|
|
</main>
|
|
|
|
@stop |