mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
89be30ff0e
- Added base of new grid system. - Added new margin/padding/visiblity helpers. - Made header collapse to overflow menu on mobile.
12 lines
357 B
PHP
12 lines
357 B
PHP
|
|
<div class="entity-list {{ $style ?? '' }}">
|
|
@if(count($entities) > 0)
|
|
@foreach($entities as $index => $entity)
|
|
@include('partials.entity-list-item', ['entity' => $entity])
|
|
@endforeach
|
|
@else
|
|
<p class="text-muted empty-text">
|
|
{{ $emptyText ?? trans('common.no_items') }}
|
|
</p>
|
|
@endif
|
|
</div> |