2019-04-19 08:25:42 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>OnionShare</title>
|
2019-05-22 23:07:35 -04:00
|
|
|
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
|
|
|
|
<link href="{{ static_url_path }}/css/style.css" rel="stylesheet" type="text/css" />
|
2019-04-19 08:25:42 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<header class="clearfix">
|
2019-05-22 23:07:35 -04:00
|
|
|
<img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
|
2019-04-19 08:25:42 -04:00
|
|
|
<h1>OnionShare</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<table class="file-list" id="file-list">
|
|
|
|
<tr>
|
|
|
|
<th id="filename-header">Filename</th>
|
|
|
|
<th id="size-header">Size</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
|
2019-05-10 16:43:46 -04:00
|
|
|
{% for info in dirs %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2019-05-22 23:07:35 -04:00
|
|
|
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_folder.png" />
|
2019-05-10 17:04:13 -04:00
|
|
|
<a href="{{ info.basename }}">
|
2019-05-10 16:43:46 -04:00
|
|
|
{{ info.basename }}
|
|
|
|
</a>
|
|
|
|
</td>
|
2019-05-10 17:04:13 -04:00
|
|
|
<td>—</td>
|
2019-05-10 16:43:46 -04:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for info in files %}
|
2019-04-19 08:25:42 -04:00
|
|
|
<tr>
|
|
|
|
<td>
|
2019-05-22 23:07:35 -04:00
|
|
|
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_file.png" />
|
2019-05-10 17:04:13 -04:00
|
|
|
<a href="{{ info.basename }}">
|
2019-05-10 16:43:46 -04:00
|
|
|
{{ info.basename }}
|
|
|
|
</a>
|
2019-04-19 08:25:42 -04:00
|
|
|
</td>
|
|
|
|
<td>{{ info.size_human }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|