mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-27 16:28:53 +00:00
30 lines
738 B
HTML
30 lines
738 B
HTML
<html xmlns:n="http://nevow.com/ns/nevow/0.1">
|
|
<head>
|
|
<title n:render="title"></title>
|
|
<!-- <link href="http://www.allmydata.com/common/css/styles.css"
|
|
rel="stylesheet" type="text/css"/> -->
|
|
<link href="/tahoe_css" rel="stylesheet" type="text/css"/>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
<body>
|
|
|
|
<h1><p n:render="header"></p></h1>
|
|
|
|
|
|
<table n:render="sequence" n:data="items" border="1">
|
|
<tr n:pattern="header">
|
|
<td>Path</td>
|
|
<td>cap</td>
|
|
</tr>
|
|
<tr n:pattern="item" n:render="row">
|
|
<td><n:slot name="path"/></td>
|
|
<td><n:slot name="cap"/></td>
|
|
</tr>
|
|
|
|
<tr n:pattern="empty"><td>no items in the manifest!</td></tr>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|