mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-12 18:04:31 +08:00
![Dan Brown](/assets/img/avatar_default.png)
- 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> |