Files
f0ckm/views/tag-cards.html
T
2026-09-12 06:01:50 +02:00

11 lines
545 B
HTML

@each(toptags as toptag)
<a href="/tag/{{ toptag.safe_tag }}@if(typeof tagger !== 'undefined' && tagger)?tagger={!! encodeURIComponent(tagger) !!}@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