]> BookStack Code Mirror - bookstack/blob - resources/views/partials/entity-list-item.blade.php
32d22853f17006da996203ca5a109f5879be600f
[bookstack] / resources / views / partials / entity-list-item.blade.php
1 <?php $type = $entity->getType(); ?>
2 <a href="{{ $entity->getUrl() }}" class="{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}} entity-list-item" data-entity-type="{{$type}}" data-entity-id="{{$entity->id}}">
3         <div class="entity-icon text-{{$type}}">@icon($type)</div>
4         <div class="content">
5
6                 <h4 class="entity-list-item-name break-text">{{ $entity->name }}</h4>
7
8                 <div class="entity-item-snippet">
9                      <p class="text-muted break-text">{{ $entity->getExcerpt() }}</p>
10                 </div>
11
12         </div>
13 </a>