15 lines
588 B
PHP
15 lines
588 B
PHP
{{-- Latest uploads grid (migrated from legacy/home/uploads.blade.php) --}}
|
|
<div class="gallery-grid">
|
|
@foreach ($latestUploads as $upload)
|
|
<div class="thumb-card effect2">
|
|
@php
|
|
$t = \App\Services\ThumbnailPresenter::present($upload, 'md');
|
|
@endphp
|
|
<a href="/art/{{ $t['id'] }}/{{ Str::slug($t['title'] ?: 'artwork') }}" title="{{ $t['title'] }}" class="thumb-link">
|
|
<img src="{{ $t['url'] }}" @if(!empty($t['srcset'])) srcset="{{ $t['srcset'] }}" @endif alt="{{ $t['title'] }}" class="img-responsive">
|
|
</a>
|
|
</div>
|
|
@endforeach
|
|
</div> <!-- end .gallery-grid -->
|
|
|