top10
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 26s

This commit is contained in:
Flummi
2024-02-18 02:18:43 +01:00
parent 6c6f739110
commit d69f9b8427
2 changed files with 54 additions and 0 deletions

14
views/top10.html Normal file
View File

@ -0,0 +1,14 @@
@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)