init f0ckm

This commit is contained in:
2026-04-25 19:51:52 +02:00
commit b646107eb7
241 changed files with 70364 additions and 0 deletions

11
views/tag-cards.html Normal file
View File

@@ -0,0 +1,11 @@
@each(toptags as toptag)
<a href="/tag/{{ toptag.safe_tag }}" 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