mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
7a8678e5f7
- Fixed overriding h3 content header style. - Updated notification styling to be less overwhelming. - Increased floated image margin. - Adjusted callout icon placement. - Fixed tinymce fullscreen zindex issue.
11 lines
374 B
PHP
11 lines
374 B
PHP
@if(count($entities) > 0)
|
|
<div class="entity-list {{ $style ?? '' }}">
|
|
@foreach($entities as $index => $entity)
|
|
@include('partials.entity-list-item', ['entity' => $entity, 'showPath' => $showPath ?? false])
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<p class="text-muted empty-text">
|
|
{{ $emptyText ?? trans('common.no_items') }}
|
|
</p>
|
|
@endif |