f0ckv2/views/picdump.html
Flummi 38c4abae3c
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 29s
blah.
2024-06-28 18:33:12 +02:00

23 lines
396 B
HTML

@include(snippets/header)
<div id="main">
<h2>Picdump (last week)</h2>
<div class="picdump">
@each(dump as line)
<a href="/{{ line.id }}"><img src="/t/{{ line.id }}.webp"></a>
@endeach
</div>
</div>
<style>
.picdump {
width: 100%;
padding: 10px;
}
.picdump > a {
margin-top: 12px;
}
.picdump > a > img {
width: 100%;
}
</style>
@include(snippets/footer)