f0ckv2/views/index.html

28 lines
826 B
HTML
Raw Normal View History

2020-04-05 16:47:09 +00:00
<!doctype f0ck>
2020-04-02 02:35:28 +00:00
<html>
2019-05-15 17:51:11 +00:00
<head>
2020-04-02 02:35:28 +00:00
<title>f0ck!</title>
<link rel="icon" type="image/png" href="./s/img/favicon.png" />
<link rel="stylesheet" type="text/css" href="./s/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./s/css/f0ck-custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-05-15 17:51:11 +00:00
</head>
<body>
2020-04-06 11:16:27 +00:00
{{include navbar}}
<div class="container-fluid">
<ul id="posts" data-last="{{=last}}">
{{each items}}
<li class="post">
<a href="/{{=value.id}}" title="{{=value.mime}}">
<img class="thumb" src="/t/{{=value.id}}.png" />
<span class="item-mime">{{=value.mime}}</span>
</a>
2020-04-02 02:35:28 +00:00
</li>
2020-04-06 11:16:27 +00:00
{{/each}}
2020-04-02 02:35:28 +00:00
</ul>
2019-05-15 17:51:11 +00:00
</div>
2020-04-02 02:35:28 +00:00
<script src="./s/js/scroller.js"></script>
<script src="./s/js/theme.js"></script>
2019-05-15 17:51:11 +00:00
</body>
</html>