mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
0e395b1e21
- Updated core toolbar & breadcrumb design
14 lines
689 B
PHP
14 lines
689 B
PHP
<div class="breadcrumbs">
|
|
@if (userCan('view', $page->book))
|
|
<a href="{{ $page->book->getUrl() }}" class="entity-chip text-book">@icon('book'){{ $page->book->getShortName() }}</a>
|
|
<div class="separator">@icon('chevron-right')</div>
|
|
@endif
|
|
@if($page->hasChapter() && userCan('view', $page->chapter))
|
|
<a href="{{ $page->chapter->getUrl() }}" class="entity-chip text-chapter">
|
|
@icon('chapter')
|
|
{{ $page->chapter->getShortName() }}
|
|
</a>
|
|
<div class="separator">@icon('chevron-right')</div>
|
|
@endif
|
|
<a href="{{ $page->getUrl() }}" class="entity-chip text-page">@icon('page'){{ $page->getShortName() }}</a>
|
|
</div> |