tahoe-lafs/src/allmydata/web/manifest.xhtml

31 lines
763 B
HTML
Raw Normal View History

<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>
<h2 n:render="reload" />
<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>