mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
19 lines
735 B
PHP
19 lines
735 B
PHP
<div class="breadcrumbs text-center">
|
|
@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>
|
|
<div class="separator">@icon('chevron-right')</div>
|
|
@endif
|
|
@if(isset($page) && userCan('view', $page))
|
|
<a href="{{ $page->getUrl() }}" class="text-page">
|
|
@icon('page'){{ $page->getShortName() }}
|
|
</a>
|
|
@endif
|
|
</div> |