f0ckv2/views/index.html
2021-04-17 10:43:23 +02:00

15 lines
385 B
HTML

{{include main/header}}
<div class="index-container">
<ul id="posts">
{{each items as item}}
<li>
<a href="/{{if typeof filter !== "undefined"}}{{=filter}}/{{/if}}{{=item.id}}">
<img src="/t/{{=item.id}}.png" loading="lazy" />
<span>{{=item.mime}}</span>
</a>
</li>
{{/each}}
</ul>
</div>
{{include main/footer}}