| 1 | <!DOCTYPE html> |
|---|
| 2 | <html lang="en" xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"> |
|---|
| 3 | <head> |
|---|
| 4 | <meta charset="utf-8"/> |
|---|
| 5 | <title t:render="title"></title> |
|---|
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
|---|
| 7 | <meta name="description" content="Tahoe-LAFS is a free and open cloud storage engine"/> |
|---|
| 8 | <meta name="author" content="Tahoe-LAFS"/> |
|---|
| 9 | |
|---|
| 10 | <!-- Le styles --> |
|---|
| 11 | <link href="/css/bootstrap.css" rel="stylesheet"/> |
|---|
| 12 | <link href="/css/bootstrap-responsive.css" rel="stylesheet"/> |
|---|
| 13 | <link href="/css/new-tahoe.css" rel="stylesheet"/> |
|---|
| 14 | |
|---|
| 15 | <!-- Le fav and touch icons --> |
|---|
| 16 | <link rel="shortcut icon" href="/icon.png" /> |
|---|
| 17 | </head> |
|---|
| 18 | |
|---|
| 19 | <body> |
|---|
| 20 | <div class="navbar navbar-fixed-top"> |
|---|
| 21 | <div class="navbar-inner"> |
|---|
| 22 | <div class="container-fluid"> |
|---|
| 23 | <a class="brand" href="/"><img src="/img/logo.png" alt="Tahoe-LAFS"/></a> |
|---|
| 24 | </div> |
|---|
| 25 | </div> |
|---|
| 26 | </div> |
|---|
| 27 | |
|---|
| 28 | <div class="container-fluid"> |
|---|
| 29 | <div class="row-fluid"> |
|---|
| 30 | <div class="span3"> |
|---|
| 31 | <div class="well sidebar-nav"> |
|---|
| 32 | <ul class="nav nav-list"> |
|---|
| 33 | <li class="toolbar-item" t:render="welcome" /> |
|---|
| 34 | <li class="toolbar-item"><a href="">Refresh</a></li> |
|---|
| 35 | <li class="toolbar-item"><a href="?t=info">More info on this directory</a></li> |
|---|
| 36 | <li class="toolbar-item" t:render="show_readonly" /> |
|---|
| 37 | </ul> |
|---|
| 38 | </div> |
|---|
| 39 | </div> |
|---|
| 40 | <div class="span9"> |
|---|
| 41 | <h1 t:render="header"></h1> |
|---|
| 42 | |
|---|
| 43 | <div t:render="try_children"> |
|---|
| 44 | <table class="table table-striped tahoe-directory" t:render="children"> |
|---|
| 45 | <tr t:render="header"> |
|---|
| 46 | <th>Type</th> |
|---|
| 47 | <th>Filename</th> |
|---|
| 48 | <th>Size</th> |
|---|
| 49 | <th>Times</th> |
|---|
| 50 | <th></th> |
|---|
| 51 | <th></th> |
|---|
| 52 | <th></th> |
|---|
| 53 | </tr> |
|---|
| 54 | <tr t:render="item"> |
|---|
| 55 | <td><t:slot name="type"/></td> |
|---|
| 56 | <td><t:slot name="filename"/></td> |
|---|
| 57 | <td align="right"><t:slot name="size"/></td> |
|---|
| 58 | <td><t:slot name="times"/></td> |
|---|
| 59 | <td><t:slot name="unlink"/></td> |
|---|
| 60 | <td><t:slot name="rename"/></td> |
|---|
| 61 | <td><t:slot name="info"/></td> |
|---|
| 62 | </tr> |
|---|
| 63 | |
|---|
| 64 | <tr t:render="empty"><td colspan="9" class="empty-marker">This directory is empty.</td></tr> |
|---|
| 65 | |
|---|
| 66 | </table> |
|---|
| 67 | </div> |
|---|
| 68 | |
|---|
| 69 | <div class="tahoe-directory-footer"> |
|---|
| 70 | <div t:render="forms"/> |
|---|
| 71 | |
|---|
| 72 | <div class="results" t:render="results"/> |
|---|
| 73 | </div> |
|---|
| 74 | </div><!--/span--> |
|---|
| 75 | </div><!--/row--> |
|---|
| 76 | |
|---|
| 77 | <hr/> |
|---|
| 78 | |
|---|
| 79 | <footer> |
|---|
| 80 | <p>© <a href="http://tahoe-lafs.org/">Tahoe-LAFS 2013</a></p> |
|---|
| 81 | </footer> |
|---|
| 82 | |
|---|
| 83 | </div><!--/.fluid-container--> |
|---|
| 84 | </body> |
|---|
| 85 | </html> |
|---|