mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
3eaf03a7ac
- Refactored some tag code bits while reviewing. - Updated tag design in search listing to be more subtle. - Moved tags out of entity-list-item-basic template and instead moved them into entity-list-item, below the existing content. - Tweaked existing tag colors a little. - Changed tag icon to be more tag-like. - Added tag-on-search test case. Review of #2487, Related to #2462
8 lines
473 B
PHP
8 lines
473 B
PHP
<?php $type = $entity->getType(); ?>
|
|
<a href="{{ $entity->getUrl() }}" class="{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}} {{$classes ?? ''}} entity-list-item" data-entity-type="{{$type}}" data-entity-id="{{$entity->id}}">
|
|
<span role="presentation" class="icon text-{{$type}}">@icon($type)</span>
|
|
<div class="content">
|
|
<h4 class="entity-list-item-name break-text">{{ $entity->name }}</h4>
|
|
{{ $slot ?? '' }}
|
|
</div>
|
|
</a>
|