]> BookStack Code Mirror - bookstack/blob - resources/views/partials/entity-list-item-basic.blade.php
c4942c71f2dd38af6bb2de09290a710bd08b7912
[bookstack] / resources / views / partials / entity-list-item-basic.blade.php
1 <?php $type = $entity->getType(); ?>
2 <a href="{{ $entity->getUrl() }}" class="{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}} {{$classes ?? ''}} entity-list-item" data-entity-type="{{$type}}" data-entity-id="{{$entity->id}}">
3     <span class="icon text-{{$type}}">@icon($type)</span>
4     <div class="content">
5             <h4 class="entity-list-item-name break-text">{{ $entity->name }}</h4>
6             {{ $slot ?? '' }}
7     </div>
8 </a>