]> BookStack Code Mirror - bookstack/blob - resources/views/partials/entity-display-item.blade.php
Code cleanup, bug squashing
[bookstack] / resources / views / partials / entity-display-item.blade.php
1 <?php $type = $entity->getType(); ?>
2 <div class="{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}} {{$classes ?? ''}} entity-list-item no-hover">
3     <span role="presentation" class="icon text-{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}}">@icon($type)</span>
4     <div class="content">
5         <div class="entity-list-item-name break-text">{{ $entity->name }}</div>
6     </div>
7 </div>