blah.
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 29s

This commit is contained in:
Flummi
2024-06-28 18:33:12 +02:00
parent 6852ac40d1
commit 38c4abae3c
4 changed files with 60 additions and 5 deletions

22
views/picdump.html Normal file
View File

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