summaryrefslogtreecommitdiff
path: root/share/templates/listing.html
blob: e394f842114d05e03b37c08a38966c94769f7f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
 <head>
    <title>OnionShare</title>
    <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" />
  </head>
  <body>

    <header class="clearfix">
      <img class="logo" src="{{ static_url_path }}/img/logo.png" title="OnionShare">
      <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>

      {% for info in dirs %}
      <tr>
        <td>
          <img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_folder.png" />
          <a href="{{ info.basename }}">
            {{ info.basename }}
          </a>
        </td>
        <td>&mdash;</td>
      </tr>
      {% endfor %}

      {% for info in files %}
      <tr>
        <td>
          <img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_file.png" />
          <a href="{{ info.basename }}">
            {{ info.basename }}
          </a>
        </td>
        <td>{{ info.size_human }}</td>
      </tr>
      {% endfor %}
    </table>
  </body>
</html>