@if(($gallery_type ?? null) === 'browse')
Browse
@elseif(isset($contentType) && $contentType)
{{ $contentType->name }}
@if(($gallery_type ?? null) === 'category')
@foreach($breadcrumbs as $crumb)
›
{{ $crumb->name }}
@endforeach
@endif
@endif
{{ $hero_title ?? 'Browse Artworks' }}
{{ $hero_title ?? 'Browse Artworks' }}
{!! $hero_description ?? '' !!}
@forelse ($artworks as $art)
@include('legacy._artwork_card', ['art' => $art])
@empty
@endforelse
No Artworks Yet
Once uploads arrive they will appear here. Check back soon.
@if ($artworks instanceof \Illuminate\Contracts\Pagination\Paginator)
{{ method_exists($artworks, 'withQueryString') ? $artworks->withQueryString()->links() : $artworks->links() }}
@endif