2014-05-22 19:49:19 -04:00
|
|
|
<!DOCTYPE html>
|
2014-05-22 19:38:14 -04:00
|
|
|
<html>
|
2016-04-12 18:59:49 -04:00
|
|
|
<head>
|
2014-08-27 16:51:39 -04:00
|
|
|
<title>OnionShare</title>
|
2018-02-10 15:50:23 -05:00
|
|
|
<link href="data:image/x-icon;base64,{{favicon_b64}}" rel="icon" type="image/x-icon" />
|
2014-08-27 16:51:39 -04:00
|
|
|
<style type="text/css">
|
2018-02-10 19:19:23 -05:00
|
|
|
.clearfix:after {
|
|
|
|
content: ".";
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
visibility: hidden;
|
|
|
|
line-height: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
2014-08-27 16:51:39 -04:00
|
|
|
|
2018-02-10 19:19:23 -05:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: Helvetica;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
background: #fcfcfc;
|
|
|
|
background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%);
|
|
|
|
padding: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
header .logo {
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 45px;
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header h1 {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0 0 0.5rem;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
|
|
|
|
header .right {
|
|
|
|
float: right;
|
|
|
|
font-size: .75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
header .right ul li {
|
|
|
|
display: inline;
|
|
|
|
margin: 0 0 0 .5rem;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
header .button {
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #4e064f;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-left: 1rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.file-list {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 auto;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.file-list th {
|
|
|
|
text-align: left;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #666666;
|
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.file-list tr {
|
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.file-list td {
|
|
|
|
white-space: nowrap;
|
2018-02-11 00:27:45 -05:00
|
|
|
padding: 0.5rem 10rem 0.5rem 0.8rem;
|
2018-02-10 19:19:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
table.file-list td img {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2018-02-10 21:25:31 -05:00
|
|
|
table.file-list td:last-child {
|
|
|
|
width: 100%;
|
2018-02-10 19:19:23 -05:00
|
|
|
}
|
2014-08-27 16:51:39 -04:00
|
|
|
</style>
|
|
|
|
<meta name="onionshare-filename" content="{{ filename }}">
|
|
|
|
<meta name="onionshare-filesize" content="{{ filesize }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-02-10 19:19:23 -05:00
|
|
|
|
|
|
|
<header class="clearfix">
|
|
|
|
<div class="right">
|
|
|
|
<ul>
|
|
|
|
<li>Total size: <strong>{{ filesize_human }}</strong> (compressed)</li>
|
|
|
|
<li><a class="button" href='/{{ slug }}/download'>Download Files</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<img class="logo" src="data:image/png;base64,{{logo_b64}}" title="OnionShare">
|
|
|
|
<h1>OnionShare</h1>
|
|
|
|
</header>
|
|
|
|
|
2014-08-27 16:51:39 -04:00
|
|
|
<table class="file-list">
|
2017-05-19 01:44:03 -04:00
|
|
|
<tr>
|
2018-02-10 19:19:23 -05:00
|
|
|
<th>Filename</th>
|
2017-05-19 01:44:03 -04:00
|
|
|
<th>Size</th>
|
2018-02-10 19:19:23 -05:00
|
|
|
<th></th>
|
2017-05-19 01:44:03 -04:00
|
|
|
</tr>
|
2014-08-27 16:51:39 -04:00
|
|
|
{% for info in file_info.dirs %}
|
|
|
|
<tr>
|
2018-02-10 19:19:23 -05:00
|
|
|
<td>
|
|
|
|
<img width="30" height="30" title="" alt="" src="data:image/png;base64,{{ folder_b64 }}" />
|
|
|
|
{{ info.basename }}
|
|
|
|
</td>
|
2014-08-27 16:51:39 -04:00
|
|
|
<td>{{ info.size_human }}</td>
|
2018-02-10 19:19:23 -05:00
|
|
|
<td></td>
|
2014-08-27 16:51:39 -04:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% for info in file_info.files %}
|
|
|
|
<tr>
|
2018-02-10 19:19:23 -05:00
|
|
|
<td>
|
|
|
|
<img width="30" height="30" title="" alt="" src="data:image/png;base64,{{ file_b64 }}" />
|
|
|
|
{{ info.basename }}
|
|
|
|
</td>
|
2014-08-27 16:51:39 -04:00
|
|
|
<td>{{ info.size_human }}</td>
|
2018-02-10 19:19:23 -05:00
|
|
|
<td></td>
|
2014-08-27 16:51:39 -04:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2014-10-26 09:16:53 -04:00
|
|
|
</table>
|
2014-08-27 16:51:39 -04:00
|
|
|
</body>
|
2014-05-22 19:38:14 -04:00
|
|
|
</html>
|