Files
f0ckm/views/tag-cards.html
2026-07-18 23:33:25 +02:00

11 lines
526 B
HTML

@each(toptags as toptag)
<a href="/tag/{{ toptag.safe_tag }}@if(user && user.user)?tagger={!! encodeURIComponent(user.user) !!}@endif" class="tag-card">
<div class="tag-card-image">
<img src="/tag_image/{{ toptag.encoded_tag }}?m={{ session.mode }}" loading="lazy" alt="{!! toptag.tag !!}">
</div>
<div class="tag-card-content">
<span class="tag-name">#{!! toptag.tag !!}</span>
<span class="tag-count">{{ t('toptags.posts', { count: toptag.total_items }) }}</span>
</div>
</a>
@endeach