f0ckv2/views/top10.html
Flummi d69f9b8427
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 26s
top10
2024-02-18 02:18:43 +01:00

15 lines
368 B
HTML

@include(snippets/header)
<h3>Top10 ({{ year }}-{{ month }})</h3>
<table class="table">
@each(f0cks as f0ck)
<tr>
<td><a href="//f0ck.me/{{ f0ck.id }}"><img src="//f0ck.me/t/{{ f0ck.id }}.webp" /></a></td>
<td><a href="//f0ck.me/{{ f0ck.id }}">{{ f0ck.id }}</a></td>
<td>{{ f0ck.username }}</td>
</tr>
@endeach
</table>
@include(snippets/footer)