2018-12-09 11:51:31 -05:00
|
|
|
<div class="breadcrumbs text-center">
|
2019-01-13 10:54:55 -05:00
|
|
|
<?php $breadcrumbCount = 0; ?>
|
|
|
|
@foreach($crumbs as $key => $crumb)
|
|
|
|
@if (is_null($crumb))
|
|
|
|
<?php continue; ?>
|
|
|
|
@endif
|
|
|
|
@if ($breadcrumbCount !== 0)
|
|
|
|
<div class="separator">@icon('chevron-right')</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (is_string($crumb))
|
|
|
|
<a href="{{ baseUrl($key) }}">
|
|
|
|
{{ $crumb }}
|
|
|
|
</a>
|
2019-02-17 06:44:02 -05:00
|
|
|
@elseif (is_array($crumb))
|
|
|
|
<a href="{{ baseUrl($key) }}">
|
|
|
|
@icon($crumb['icon']) {{ $crumb['text'] }}
|
|
|
|
</a>
|
|
|
|
@elseif($crumb instanceof \BookStack\Entities\Entity)
|
2019-01-13 10:54:55 -05:00
|
|
|
<a href="{{ $crumb->getUrl() }}" class="text-{{$crumb->getType()}}">
|
|
|
|
@icon($crumb->getType()){{ $crumb->getShortName() }}
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
<?php $breadcrumbCount++; ?>
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
{{--@if (isset($book) && userCan('view', $book))--}}
|
|
|
|
{{--<a href="{{ $book->getUrl() }}" class="text-book">--}}
|
|
|
|
{{--@icon('book'){{ $book->getShortName() }}--}}
|
|
|
|
{{--</a>--}}
|
|
|
|
{{--<div class="separator">@icon('chevron-right')</div>--}}
|
|
|
|
{{--@endif--}}
|
|
|
|
{{--@if(isset($chapter) && userCan('view', $chapter))--}}
|
|
|
|
{{--<a href="{{ $chapter->getUrl() }}" class="text-chapter">--}}
|
|
|
|
{{--@icon('chapter'){{ $chapter->getShortName() }}--}}
|
|
|
|
{{--</a>--}}
|
|
|
|
{{--@if (isset($page))--}}
|
|
|
|
{{--<div class="separator">@icon('chevron-right')</div>--}}
|
|
|
|
{{--@endif--}}
|
|
|
|
{{--@endif--}}
|
|
|
|
{{--@if(isset($page) && userCan('view', $page))--}}
|
|
|
|
{{--<a href="{{ $page->getUrl() }}" class="text-page">--}}
|
|
|
|
{{--@icon('page'){{ $page->getShortName() }}--}}
|
|
|
|
{{--</a>--}}
|
|
|
|
{{--@endif--}}
|
2018-11-11 08:11:36 -05:00
|
|
|
</div>
|