BookStack/resources/views/books/show.blade.php

63 lines
2.0 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
@extends('base')
@section('content')
<div class="row faded-small">
<div class="col-md-6"></div>
<div class="col-md-6">
<div class="action-buttons faded">
<a href="{{$book->getEditUrl()}}"><i class="fa fa-pencil"></i>Edit</a>
<a href="{{ $book->getUrl() }}/sort"><i class="fa fa-sort"></i>Sort</a>
<a href="{{ $book->getUrl() }}/delete"><i class="fa fa-trash"></i>Delete</a>
2015-07-15 21:55:49 +00:00
</div>
</div>
</div>
2015-07-15 21:55:49 +00:00
<div class="page-content">
<h1>{{$book->name}}</h1>
<p class="text-muted">{{$book->description}}</p>
2015-07-15 21:55:49 +00:00
<div class="clearfix header-group">
2015-07-27 19:17:08 +00:00
<h4 class="float">Contents</h4>
<div class="float right">
<a href="{{$book->getUrl() . '/page/create'}}" class="text-pos">+ New Page</a>
<a href="{{$book->getUrl() . '/chapter/create'}}" class="text-pos">+ New Chapter</a>
</div>
</div>
<div>
2015-07-27 19:17:08 +00:00
@foreach($book->children() as $childElement)
<div >
<h3>
<a href="{{ $childElement->getUrl() }}">
@if(is_a($childElement, 'Oxbow\Chapter'))
<i class="fa fa-archive"></i>
@else
<i class="fa fa-file"></i>
@endif
{{ $childElement->name }}
</a>
</h3>
2015-07-27 19:17:08 +00:00
</div>
<hr>
2015-07-27 19:17:08 +00:00
@endforeach
2015-07-15 21:55:49 +00:00
</div>
2015-07-27 19:17:08 +00:00
{{--@include('pages/page-tree-list', ['pageTree' => $pageTree])--}}
2015-07-15 21:55:49 +00:00
</div>
2015-07-20 21:05:26 +00:00
<script>
$(function() {
$('.nested-page-list i.arrow').click(function() {
var list = $(this).closest('.nested-page-list');
var listItem = $(this).closest('li');
listItem.toggleClass('expanded');
});
});
</script>
2015-07-12 19:01:42 +00:00
@stop