16 lines
422 B
HTML
16 lines
422 B
HTML
|
<!DOCTYPE blah>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>f0ck me!</title>
|
||
|
<link rel="icon" type="image/gif" href="./s/favicon.gif" />
|
||
|
<link rel="stylesheet" type="text/css" href="./s/test.css">
|
||
|
</head>
|
||
|
<div class="body">
|
||
|
{% for item in items %}
|
||
|
<a href="./{{ item.id }}" title="{{ item.mime }}"><img class="thumb" src="./t/{{ item.id }}.png" /></a>
|
||
|
{% endfor %}
|
||
|
<div class="clear"></div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|