f0ckv2/views/index.html

15 lines
385 B
HTML
Raw Normal View History

2020-04-08 02:19:20 +02:00
{{include main/header}}
2021-04-17 10:43:23 +02:00
<div class="index-container">
2021-03-03 05:34:57 +01:00
<ul id="posts">
2020-04-06 15:51:18 +02:00
{{each items as item}}
2021-04-17 10:43:23 +02:00
<li>
<a href="/{{if typeof filter !== "undefined"}}{{=filter}}/{{/if}}{{=item.id}}">
<img src="/t/{{=item.id}}.png" loading="lazy" />
<span>{{=item.mime}}</span>
2020-04-06 13:16:27 +02:00
</a>
2020-04-02 04:35:28 +02:00
</li>
2020-04-06 13:16:27 +02:00
{{/each}}
2020-04-02 04:35:28 +02:00
</ul>
2019-05-15 17:51:11 +00:00
</div>
2020-04-08 02:19:20 +02:00
{{include main/footer}}