Saddle/templates/gallery.html
2019-10-08 16:25:02 -04:00

26 lines
600 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Saddle - Gallery</title>
<link rel="stylesheet" type="text/css" href="/static/saddle.css">
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="A file upload service.">
</head>
<body>
<header>
{% include 'header.html' %}
</header>
<main>
<section>
<table>
{% for upload in uploads %}
<tr>
<td><a href="{{ upload_url + upload['filename'] }}">{{ upload['filename'] }}</a></td>
</tr>
{% endfor %}
</table>
</section>
</main>
</body>
</html>