Current state

This commit is contained in:
2026-02-07 08:23:18 +01:00
commit 0a4372c40d
22479 changed files with 1553543 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<div class="photo_frame" itemscope itemtype="http://schema.org/Photograph">
<a href="{{ $art->url ?? '#' }}" itemprop="url">
<div class="ribbon gid_{{ $art->gid_num }}" title="{{ $art->category_name ?? '' }}" itemprop="genre">
<span>{{ $art->category_name ?? '' }}</span>
</div>
@php
$img_src = $art->thumb ?? '';
$img_srcset = $art->thumb_srcset ?? '';
@endphp
<img src="{{ $img_src }}" srcset="{{ $img_srcset }}" loading="lazy" decoding="async" alt="{{ e($art->name) }}" class="img-responsive" itemprop="thumbnailUrl">
<div class="details">
<div class="info" itemprop="author">
<span class="fa fa-user"></span> {{ $art->uname ?? '' }}
</div>
<div class="title" itemprop="name">
{{ $art->name }}
</div>
</div>
</a>
{{-- debug thumb links removed to avoid textual output beneath thumbnails --}}
</div>