24 lines
523 B
HTML
24 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Saddle - Results</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>
|
|
<ul>
|
|
{% for url in urls %}
|
|
<li><a href="{{ url }}">{{ url }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|