mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-26 08:01:06 +00:00
31 lines
704 B
HTML
31 lines
704 B
HTML
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
|
|
<head>
|
|
<title t:render="title"></title>
|
|
<link href="/tahoe.css" rel="stylesheet" type="text/css"/>
|
|
<link href="/icon.png" rel="shortcut icon" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta t:render="refresh" />
|
|
</head>
|
|
<body>
|
|
|
|
<h1><p t:render="header"></p></h1>
|
|
|
|
<h2 t:render="reload" />
|
|
|
|
<table t:render="items">
|
|
<tr t:pattern="header">
|
|
<td>Path</td>
|
|
<td>cap</td>
|
|
</tr>
|
|
<tr t:render="item">
|
|
<td><t:slot name="path"/></td>
|
|
<td><t:slot name="cap"/></td>
|
|
</tr>
|
|
|
|
<tr t:render="empty"><td>no items in the manifest!</td></tr>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|